Add commit to git, untested

This commit is contained in:
Marco Pesenti Gritti 2007-07-08 16:05:54 +02:00
parent 1d567905c8
commit a2c0e52c20

View File

@ -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):