diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2011-10-16 09:13:24 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2011-10-16 09:13:24 -0400 |
commit | b2c661b2eb9d355255a447db715b05a742eba965 (patch) | |
tree | 16aaf110e6fe1a3b702057e23096244460a95fe8 /release.py | |
parent | 400aece53173768934077f003a8c634ab4351974 (diff) | |
download | external_python_setuptools-b2c661b2eb9d355255a447db715b05a742eba965.tar.gz external_python_setuptools-b2c661b2eb9d355255a447db715b05a742eba965.tar.bz2 external_python_setuptools-b2c661b2eb9d355255a447db715b05a742eba965.zip |
Fixed release script so it doesn't leave an empty tag and thus a dash at the end (it's powershell that needs the double-quotes inside single quotes)
--HG--
branch : distribute
extra : rebase_source : c7658c4f86de5055bdb3a20f5bc8b5a0dc3eb4de
Diffstat (limited to 'release.py')
-rw-r--r-- | release.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ def do_release(): if os.path.isdir('./dist'): shutil.rmtree('./dist') subprocess.check_call([sys.executable, 'setup.py', - '-q', 'egg_info', '-RD', '-b', '""', 'sdist', 'register', + '-q', 'egg_info', '-RD', '-b', '', 'sdist', 'register', 'upload', 'upload_docs']) upload_boostrap_script() |