commit | 6bad86462b7b433d7fe51e4fde5e65e9a61fd375 | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Sat Oct 23 19:06:20 1999 +0000 |
committer | Greg Ward <gward@python.net> | Sat Oct 23 19:06:20 1999 +0000 |
tree | d29ccf98d7e68126aea739502685f97bbd60ec40 | |
parent | 714fd26a2fba2049a5c10104b71772d15a933607 [diff] [blame] |
Fix how we run 'zip' -- give explicit .zip extension.
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 @@ # 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):