[fix] also test if repo has changed of url before chosing to rebuild
This commit is contained in:
parent
af7777bb23
commit
c398377f92
@ -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…
Reference in New Issue
Block a user