mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Added the ability to flag an unbuildable release
This commit is contained in:
parent
a83b66ce87
commit
84ba9b19be
3 changed files with 20 additions and 2 deletions
7
build.py
7
build.py
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue