Skip to content

Commit

Permalink
clean up error message
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitpaulk committed Nov 2, 2022
1 parent 53903ec commit bba7229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/utils/git_remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (e NoCodecraftersRemoteFoundError) Error() string {
remoteUrls = append(remoteUrls, remote.Url)
}

return fmt.Sprintf("No CodeCrafters git remotes found. Available remotes: %s\nPlease run this command from within your CodeCrafters Git repository." + strings.Join(remoteUrls, ", "))
return fmt.Sprintf("No CodeCrafters git remotes found. Available remotes: %s\nPlease run this command from within your CodeCrafters Git repository.", strings.Join(remoteUrls, ", "))
}

type MultipleCodecraftersRemotesFoundError struct {
Expand Down

0 comments on commit bba7229

Please sign in to comment.