From a2c0e52c203e7a19b62bf4e6ba1ab034df50c74e Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sun, 08 Jul 2007 14:05:54 +0000 Subject: Add commit to git, untested --- (limited to 'maint-helper.py') diff --git a/maint-helper.py b/maint-helper.py index 5d629ff..a4454fe 100755 --- a/maint-helper.py +++ b/maint-helper.py @@ -57,9 +57,9 @@ def cmd_build_snapshot(): print 'Build %s...' % tarball - #os.spawnlp(os.P_WAIT, 'make', 'make', 'distcheck') + os.spawnlp(os.P_WAIT, 'make', 'make', 'distcheck') - #os.rename('%s-%s.tar.bz2' % (name, version), tarball) + os.rename('%s-%s.tar.bz2' % (name, version), tarball) print 'Update NEWS.sugar...' @@ -99,6 +99,17 @@ def cmd_build_snapshot(): f.write(news) f.close() + print 'Committing to git...' + + changelog = 'Snapshot %d.' % alphatag + retcode = subprocess.call(['git', 'commit', '-a', '-m % s' % changelog]) + if retcode: + print 'ERROR - cannot commit to git' + + retcode = subprocess.call(['git', 'push']) + if retcode: + print 'ERROR - cannot push to git' + print 'Done.' def check_licenses(path, license, missing): -- cgit v0.9.1