diff options
author | Greg Ward <gward@python.net> | 1999-10-23 19:06:20 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-10-23 19:06:20 (GMT) |
commit | 6bad86462b7b433d7fe51e4fde5e65e9a61fd375 (patch) | |
tree | d29ccf98d7e68126aea739502685f97bbd60ec40 | |
parent | 714fd26a2fba2049a5c10104b71772d15a933607 (diff) | |
download | cpython-6bad86462b7b433d7fe51e4fde5e65e9a61fd375.zip cpython-6bad86462b7b433d7fe51e4fde5e65e9a61fd375.tar.gz cpython-6bad86462b7b433d7fe51e4fde5e65e9a61fd375.tar.bz2 |
Fix how we run 'zip' -- give explicit .zip extension.
-rw-r--r-- | Lib/distutils/command/dist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/dist.py b/Lib/distutils/command/dist.py index 99a0522..959413f 100644 --- a/Lib/distutils/command/dist.py +++ b/Lib/distutils/command/dist.py @@ -405,7 +405,7 @@ class Dist (Command): # on Redmond's archaic CP/M knockoff is nowadays), but I'll let # someone who can actually test it do that. - self.spawn (["zip", "-r", base_dir, base_dir]) + self.spawn (["zip", "-r", base_dir + ".zip", base_dir]) def make_distribution (self): |