mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
Skip the single app, not all of them...
This commit is contained in:
parent
ccac349a4c
commit
8af027011d
1 changed files with 5 additions and 1 deletions
|
|
@ -286,6 +286,8 @@ def main():
|
||||||
help="Only process apps with auto-updates")
|
help="Only process apps with auto-updates")
|
||||||
parser.add_option("--commit", action="store_true", default=False,
|
parser.add_option("--commit", action="store_true", default=False,
|
||||||
help="Commit changes")
|
help="Commit changes")
|
||||||
|
parser.add_option("--subdir-changes", action="store_true", default=False,
|
||||||
|
help="Look for changes in app subdirectories")
|
||||||
parser.add_option("--gplay", action="store_true", default=False,
|
parser.add_option("--gplay", action="store_true", default=False,
|
||||||
help="Only print differences with the Play Store")
|
help="Only print differences with the Play Store")
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
@ -324,7 +326,7 @@ def main():
|
||||||
|
|
||||||
if options.autoonly and app['Auto Update Mode'] == 'None':
|
if options.autoonly and app['Auto Update Mode'] == 'None':
|
||||||
print "Nothing to do for %s..." % app['id']
|
print "Nothing to do for %s..." % app['id']
|
||||||
return
|
continue
|
||||||
|
|
||||||
print "Processing " + app['id'] + '...'
|
print "Processing " + app['id'] + '...'
|
||||||
|
|
||||||
|
|
@ -353,6 +355,8 @@ def main():
|
||||||
version = None
|
version = None
|
||||||
vercode = 'Invalid update check method'
|
vercode = 'Invalid update check method'
|
||||||
|
|
||||||
|
if options.subdir-changes:
|
||||||
|
|
||||||
updating = False
|
updating = False
|
||||||
if not version:
|
if not version:
|
||||||
print "..." + vercode
|
print "..." + vercode
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue