Remove unnecessary Sprint

This commit is contained in:
ulwlu 2021-02-13 18:10:38 +09:00
parent 16be90c538
commit 95a8f926ab
No known key found for this signature in database
GPG key ID: 5D970017CA0286BA

View file

@ -393,7 +393,7 @@ func confirmSubmission(repoName string, repoOwner string, projectDirErr error) (
promptString := ""
if projectDirErr == nil {
promptString = fmt.Sprint("This will add remote origin to your current directory. Continue? ")
promptString = "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 {