fix(clustertool): correct build typo

This commit is contained in:
Kjeld Schouten
2024-11-09 13:21:24 +01:00
parent 737b8bc5c3
commit 0c3e94c799

View File

@@ -126,7 +126,7 @@ func FormatGitURL(input string) string {
input = strings.Replace(input, "ssh://", "ssh://git@", 1)
}
if strings.Contains(url, "git@git@") {
if strings.Contains(input, "git@git@") {
input = strings.Replace(input, "git@git@", "git@", 1)
}