From 6bad86462b7b433d7fe51e4fde5e65e9a61fd375 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sat, 23 Oct 1999 19:06:20 +0000 Subject: Fix how we run 'zip' -- give explicit .zip extension. --- Lib/distutils/command/dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ 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): -- cgit v0.12