Fix how we run 'zip' -- give explicit .zip extension.

This commit is contained in:
Greg Ward 1999-10-23 19:06:20 +00:00
parent 714fd26a2f
commit 6bad86462b

View file

@ -405,7 +405,7 @@ class Dist (Command):
# on Redmond's archaic CP/M knockoff is nowadays), but I'll let # on Redmond's archaic CP/M knockoff is nowadays), but I'll let
# someone who can actually test it do that. # 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): def make_distribution (self):