From f105c8ae5c908a2942a4b3abe08edf7a2ddf82c3 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Mon, 22 Jul 2024 16:51:44 +0100 Subject: [PATCH] Adjust scripts following move and rename of package repositories Signed-off-by: James Le Cuirot --- emerge-gitclone | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emerge-gitclone b/emerge-gitclone index 8908eb5..4e9b260 100755 --- a/emerge-gitclone +++ b/emerge-gitclone @@ -87,7 +87,7 @@ def sync_repo(): print(f">>> Gitref detected in version {ref}, will check out {git_ref}.") ref = git_ref - repo_list = ["scripts", "coreos-overlay", "portage-stable"] + repo_list = ["scripts", "flatcar-overlay", "gentoo-subset"] for repo in repo_list: if os.path.isdir(GIT_LOCATION.format(repo=repo)) and not os.path.islink( @@ -108,7 +108,7 @@ def sync_repo(): print(f">>> Symlink the repository with the appropriate folder - {repo}") os.symlink( GIT_LOCATION.format(repo="scripts") - + f"/sdk_container/src/third_party/{repo}", + + f"/repos/{repo}", GIT_LOCATION.format(repo=repo), )