Skip to content

Commit

Permalink
fix(clustertool): correct build typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PrivatePuffin committed Nov 9, 2024
1 parent 737b8bc commit 0c3e94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clustertool/pkg/initfiles/initfiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 0c3e94c

Please sign in to comment.