mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-17 19:29:13 +00:00
check-git-repo-avail ignore NoSourceSince
Apps that have NoSourceSince don't need a Repo:.
This commit is contained in:
parent
6f85b8bcfd
commit
19a9366457
1 changed files with 2 additions and 2 deletions
|
|
@ -35,14 +35,14 @@ for f in files:
|
|||
print(Fore.RED + msg + Style.RESET_ALL)
|
||||
errors[f] = msg
|
||||
continue
|
||||
if 'NoSourceSince' in data.keys():
|
||||
continue
|
||||
url = data.get('Repo')
|
||||
if not url:
|
||||
msg = 'ERROR: %s: no Repo: set!' % f
|
||||
print(Fore.RED + msg + Style.RESET_ALL)
|
||||
errors[f] = msg
|
||||
continue
|
||||
if 'NoSourceSince' in data.keys():
|
||||
continue
|
||||
if data.get('RepoType') != 'git':
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue