device-deps-regenerator: Skip repos with non-github remote

Change-Id: Ie120975364af1e5ad3c5c2dbc7f72f592ec285dd
This commit is contained in:
LuK1337
2024-02-15 15:08:15 +01:00
parent 47cbd0e4ad
commit befa89ec71

View File

@@ -43,6 +43,8 @@ def get_cm_dependencies(name):
mydeps = []
non_device_repos = set()
for el in cmdeps:
if el.get("remote", "github") != "github":
continue
if "_device_" not in el["repository"]:
non_device_repos.add(el["repository"])
depbranch = el.get("branch", branch)