diff --git a/pkg/cmd/repo/create/create.go b/pkg/cmd/repo/create/create.go index 11007f40c..42285012d 100644 --- a/pkg/cmd/repo/create/create.go +++ b/pkg/cmd/repo/create/create.go @@ -393,7 +393,7 @@ func confirmSubmission(repoName string, repoOwner string, projectDirErr error) ( promptString := "" if projectDirErr == nil { - promptString = fmt.Sprintf("This will add remote origin to your current directory. Continue? ") + promptString = fmt.Sprint("This will add remote origin to your current directory. Continue? ") } else if repoOwner != "" { promptString = fmt.Sprintf("This will create '%s/%s' in your current directory. Continue? ", repoOwner, repoName) } else {