chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3ef097
)
Don't run lint on disabled apps
author
Daniel Martí
<mvdan@mvdan.cc>
Thu, 23 Jan 2014 09:54:32 +0000
(10:54 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Thu, 23 Jan 2014 09:54:32 +0000
(10:54 +0100)
fdroidserver/lint.py
patch
|
blob
|
history
diff --git
a/fdroidserver/lint.py
b/fdroidserver/lint.py
index 501532fdc289df31d5ac66103309bc8c443a66e9..1142818a40931893cc78503a6190b1fbd8fc8135 100644
(file)
--- a/
fdroidserver/lint.py
+++ b/
fdroidserver/lint.py
@@
-80,6
+80,9
@@
def main():
appid = app['id']
lastcommit = ''
+ if app['Disabled']:
+ continue
+
for build in app['builds']:
if 'commit' in build and 'disable' not in build:
lastcommit = build['commit']