From d93122bf5e8622f6c8ede4b3b80295f9b8511425 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 14 Aug 2007 19:24:01 +0000 Subject: Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar --- (limited to 'maint-helper.py') diff --git a/maint-helper.py b/maint-helper.py index 8c64ca2..e1bbe22 100755 --- a/maint-helper.py +++ b/maint-helper.py @@ -16,6 +16,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# Latest source available at git://dev.laptop.org/sugar + import os import sys import re @@ -64,7 +66,9 @@ def cmd_build_snapshot(): print 'Build %s...' % tarball - os.spawnlp(os.P_WAIT, 'make', 'make', 'distcheck') + retcode = subprocess.call(['make', 'distcheck']) + if retcode: + sys.exit(0) os.rename('%s-%s.tar.bz2' % (name, version), tarball) -- cgit v0.9.1