mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Fix how we run 'zip' -- give explicit .zip extension.
This commit is contained in:
parent
714fd26a2f
commit
6bad86462b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue