Static reference

This commit is contained in:
Jack Jackson 2025-03-05 18:45:05 -08:00
parent 49ea6812ad
commit 50775d5d2c
7 changed files with 2 additions and 0 deletions

1
dist/index.js vendored
View File

@ -26012,6 +26012,7 @@ function setPreconditions(tokenForTargetRepo, sourceRepoId, targetRepoId) {
// repos and, once synced initially, it won't have to go back further than a single one in most cases)
(0, git_1.gitClone)(SOURCE_DIR, `https://${(0, types_1.repoString)(sourceRepoId)}`);
(0, git_1.gitClone)(TARGET_DIR, `https://${(0, types_1.repoString)(targetRepoId)}`);
console.log("Finished cloning repos");
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -120,4 +120,5 @@ function setPreconditions(tokenForTargetRepo: string, sourceRepoId: RepoId, targ
// repos and, once synced initially, it won't have to go back further than a single one in most cases)
gitClone(SOURCE_DIR, `https://${repoString(sourceRepoId)}`);
gitClone(TARGET_DIR, `https://${repoString(targetRepoId)}`);
console.log("Finished cloning repos");
}