Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions emerge-gitclone
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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),
)

Expand Down