From c9d8146f9e65536fb2daa687df90e57cd3523bbf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Mon, 20 Jan 2014 11:10:00 +0100 Subject: [PATCH] Warn about branches used in commit= --- fdroidserver/lint.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 3fbf89c6..de805527 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -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 -- 2.30.2