mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 14:44:02 +00:00
Fix extra './' in archives
[SVN r80457]
This commit is contained in:
parent
e7bb870982
commit
a9b3516c68
1 changed files with 3 additions and 3 deletions
|
@ -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 )
|
||||
|
|
Loading…
Add table
Reference in a new issue