summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-10-23 19:06:20 (GMT)
committerGreg Ward <gward@python.net>1999-10-23 19:06:20 (GMT)
commit6bad86462b7b433d7fe51e4fde5e65e9a61fd375 (patch)
treed29ccf98d7e68126aea739502685f97bbd60ec40 /Lib
parent714fd26a2fba2049a5c10104b71772d15a933607 (diff)
downloadcpython-6bad86462b7b433d7fe51e4fde5e65e9a61fd375.zip
cpython-6bad86462b7b433d7fe51e4fde5e65e9a61fd375.tar.gz
cpython-6bad86462b7b433d7fe51e4fde5e65e9a61fd375.tar.bz2
Fix how we run 'zip' -- give explicit .zip extension.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/dist.py2
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):