diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-21 20:56:35 (GMT) |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-21 20:56:35 (GMT) |
| commit | 55f1bb8bfa362569b6698a91a1cf421bdfcd13d7 (patch) | |
| tree | beea9fb70aee8ff05b1f6fa78bd04e5d2a668bdf /Lib/distutils/command/bdist_wininst.py | |
| parent | e6c430dffe5618016c516578726c0a7aa1471a9e (diff) | |
| download | cpython-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.zip cpython-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.tar.gz cpython-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.tar.bz2 | |
Add the upload command. Make all dist commands register their
outputs with the distribution object.
Diffstat (limited to 'Lib/distutils/command/bdist_wininst.py')
| -rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index 9b45cf3..a0335fe 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -162,6 +162,8 @@ class bdist_wininst (Command): root_dir=self.bdist_dir) # create an exe containing the zip-file self.create_exe(arcname, fullname, self.bitmap) + self.distribution.dist_files.append(('bdist_wininst', + self.get_installer_filename())) # remove the zip-file again log.debug("removing temporary file '%s'", arcname) os.remove(arcname) |
