Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80457 - trunk/tools/release
From: marshall_at_[hidden]
Date: 2012-09-08 18:36:19


Author: marshall
Date: 2012-09-08 18:36:19 EDT (Sat, 08 Sep 2012)
New Revision: 80457
URL: http://svn.boost.org/trac/boost/changeset/80457

Log:
Fix extra './' in archives
Text files modified:
   trunk/tools/release/snapshot.py | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/tools/release/snapshot.py
==============================================================================
--- trunk/tools/release/snapshot.py (original)
+++ trunk/tools/release/snapshot.py 2012-09-08 18:36:19 EDT (Sat, 08 Sep 2012)
@@ -154,9 +154,9 @@
         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 )


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk