mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-18 21:47:19 -04:00
Warn about branches used in commit=
This commit is contained in:
@@ -109,6 +109,15 @@ def main():
|
||||
if m.match(app[f]):
|
||||
warn("%s url '%s': %s" % (f, app[f], r))
|
||||
|
||||
# Build warnings
|
||||
for build in app['builds']:
|
||||
for n in ['master', 'origin/', 'default', 'trunk']:
|
||||
if 'commit' not in build:
|
||||
continue
|
||||
if build['commit'].startswith(n):
|
||||
warn("Branch '%s' used as commit" % n)
|
||||
|
||||
|
||||
if not appid:
|
||||
print
|
||||
|
||||
|
||||
Reference in New Issue
Block a user