From 1a5035a295734002cdff73f6af6ade47338d010b Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sat, 8 Sep 2012 22:36:19 +0000 Subject: [PATCH] Fix extra './' in archives [SVN r80457] --- snapshot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snapshot.py b/snapshot.py index 8928af6..83061ce 100755 --- a/snapshot.py +++ b/snapshot.py @@ -154,9 +154,9 @@ def do_it(svnUrl, tag, suffix, releaseRevision, server, username, password, doUp outputName = "boost_" + tag if suffix != None: outputName += suffix - shutil.make_archive (outputName, "bztar", posixDir ) - shutil.make_archive (outputName, "gztar", posixDir ) - shutil.make_archive (outputName, "zip", windowsDir ) + shutil.make_archive ( outputName, "bztar", posixDir, boostName ) + shutil.make_archive ( outputName, "gztar", posixDir, boostName ) + shutil.make_archive ( outputName, "zip", windowsDir, boostName ) hereDir = os.getcwd () os.chdir ( windowsDir ) compress_7z ( "../" + outputName, boostName )