Added the ability to flag an unbuildable release

This commit is contained in:
Ciaran Gultnieks 2011-03-02 21:47:48 +00:00
parent a83b66ce87
commit 84ba9b19be
3 changed files with 20 additions and 2 deletions

View file

@ -76,9 +76,12 @@ for app in apps:
dest_unsigned = dest + "_unsigned"
if os.path.exists(dest):
print "Version " + thisbuild['version'] + " already exists"
print "..version " + thisbuild['version'] + " already exists"
elif thisbuild['commit'].startswith('!'):
print ("..skipping version " + thisbuild['version'] + " - " +
thisbuild['commit'][1:])
else:
print "Building version " + thisbuild['version']
print "..building version " + thisbuild['version']
if not got_source: