mirror of https://github.com/python/cpython
Fix how we run 'zip' -- give explicit .zip extension.
This commit is contained in:
parent
714fd26a2f
commit
6bad86462b
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue