mirror of
https://github.com/YunoHost/yunodevtools.git
synced 2024-09-03 20:16:19 +02:00
[mod] make code more lisible
This commit is contained in:
parent
fb21c9b34c
commit
812de03582
1 changed files with 4 additions and 1 deletions
|
@ -85,7 +85,10 @@ for app, info in apps_list.items():
|
||||||
manifest = {}
|
manifest = {}
|
||||||
timestamp = None
|
timestamp = None
|
||||||
|
|
||||||
if already_built_file.get(app, {}).get("git", {}).get("revision", None) == app_rev and already_built_file.get(app, {}).get("git", {}).get("url") == app_url:
|
revision = already_built_file.get(app, {}).get("git", {}).get("revision", None)
|
||||||
|
url = already_built_file.get(app, {}).get("git", {}).get("url")
|
||||||
|
|
||||||
|
if revision == app_rev and url == app_url:
|
||||||
print("%s[%s] is already up to date in target output, ignore" % (app, app_rev))
|
print("%s[%s] is already up to date in target output, ignore" % (app, app_rev))
|
||||||
result_dict[app] = already_built_file[app]
|
result_dict[app] = already_built_file[app]
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Reference in a new issue