This commit is contained in:
Jay Gabriels 2024-05-14 18:23:30 -07:00
commit dbf16d6fdd
No known key found for this signature in database
GPG Key ID: 47EC2E34963C2D56

View File

@ -586,6 +586,13 @@ func CloneAllRepos(git git.Gitter, cloneTargets []scm.Repo) {
if strings.EqualFold(clonedRepoName, targetRepo) {
flag = true
}
if os.Getenv("GHORG_CLONE_WIKI") == "true" {
targetRepoWiki := targetRepo + ".wiki"
if strings.EqualFold(targetRepoWiki, clonedRepoName) {
flag = true
}
}
}
if flag {