mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
[fix] also test if repo has changed of url before chosing to rebuild
This commit is contained in:
parent
af7777bb23
commit
c398377f92
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ for app, info in apps_list.items():
|
|||
manifest = {}
|
||||
timestamp = None
|
||||
|
||||
if already_built_file.get(app, {}).get("git", {}).get("revision", None) == app_rev:
|
||||
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:
|
||||
print("%s[%s] is already up to date in target output, ignore" % (app, app_rev))
|
||||
result_dict[app] = already_built_file[app]
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue