]> granicus.if.org Git - python/commitdiff
Fix how we run 'zip' -- give explicit .zip extension.
authorGreg Ward <gward@python.net>
Sat, 23 Oct 1999 19:06:20 +0000 (19:06 +0000)
committerGreg Ward <gward@python.net>
Sat, 23 Oct 1999 19:06:20 +0000 (19:06 +0000)
Lib/distutils/command/dist.py

index 99a05225bf144d305177a1461b40123cd188721b..959413f49ce22300b8c667023454a6f00fca3705 100644 (file)
@@ -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):