aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2011-10-16 09:13:24 -0400
committerJason R. Coombs <jaraco@jaraco.com>2011-10-16 09:13:24 -0400
commitb2c661b2eb9d355255a447db715b05a742eba965 (patch)
tree16aaf110e6fe1a3b702057e23096244460a95fe8 /release.py
parent400aece53173768934077f003a8c634ab4351974 (diff)
downloadexternal_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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.py b/release.py
index 0dbca28c..91ae6dfb 100644
--- a/release.py
+++ b/release.py
@@ -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()