From 7c89914d2d2c944bcf31ede6f97fbcd2dbc1e47e Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 18 May 2009 03:07:27 -0400 Subject: [PATCH] release.py: Don't specify -a and paths to git commit Signed-off-by: James Vega --- sandbox/release.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sandbox/release.py b/sandbox/release.py index 15115c711..1725644f0 100644 --- a/sandbox/release.py +++ b/sandbox/release.py @@ -74,8 +74,8 @@ if __name__ == '__main__': ' Change to an appropriate directory or remove the supybot ' 'directory to continue.') print 'Checking out fresh tree from git.' - system( - 'git clone git+ssh://%s@supybot.git.sourceforge.net/gitroot/supybot'%u) + system('git clone git+ssh://%s@supybot.git.sourceforge.net/gitroot/supybot' + % u) os.chdir('supybot') print 'Checking RELNOTES version line.' @@ -94,7 +94,7 @@ if __name__ == '__main__': for fn in versionFiles: sh = 'perl -pi -e "s/^version\s*=.*/version = \'%s\'/" %s' % (v, fn) system(sh, 'Error changing version in %s' % fn) - system('git commit -a %s -m \'Updated to %s.\' %s' + system('git commit %s -m \'Updated to %s.\' %s' % (sign, v, ' '.join(versionFiles))) print 'Tagging release.'