From: Greg Ward Date: Sat, 23 Oct 1999 19:06:20 +0000 (+0000) Subject: Fix how we run 'zip' -- give explicit .zip extension. X-Git-Tag: v1.6a1~803 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6bad86462b7b433d7fe51e4fde5e65e9a61fd375;p=thirdparty%2FPython%2Fcpython.git Fix how we run 'zip' -- give explicit .zip extension. --- diff --git a/Lib/distutils/command/dist.py b/Lib/distutils/command/dist.py index 99a05225bf14..959413f49ce2 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):