mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Don't require commit to be specified for a disabled build
This commit is contained in:
parent
a546013756
commit
8627357cd9
1 changed files with 1 additions and 1 deletions
|
|
@ -547,7 +547,7 @@ def parse_metadata(metafile, verbose=False):
|
|||
line = line.rstrip('\r\n')
|
||||
if mode == 3:
|
||||
if not any(line.startswith(s) for s in (' ', '\t')):
|
||||
if 'commit' not in curbuild:
|
||||
if 'commit' not in curbuild and 'disable' not in curbuild:
|
||||
raise MetaDataException("No commit specified for {0} in {1}".format(
|
||||
curbuild['version'], metafile.name))
|
||||
thisinfo['builds'].append(curbuild)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue