Skip to content

Commit f9d77e6

Browse files
committed
fix message format
1 parent bd008d7 commit f9d77e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/wkspace/validator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ func Preflight() (bool, error) {
2020
}
2121
}
2222

23-
fmt.Print("\nTesting if git ssh is properly configured...\n")
23+
fmt.Print("\nTesting if git ssh is properly configured...")
2424
if err := checkGitSSH(); err != nil {
2525
fmt.Printf("%s\n\n", err.Error())
2626
utils.Warn("Please ensure that you have ssh keys set up for git and that you've added them to your ssh agent. You can use `plural crypto ssh-keygen` to create your first ssh keys then upload the public key to your git provider.\n")
2727
return true, fmt.Errorf("git ssh is not properly configured")
2828
}
29-
fmt.Println(" \033[32m (\u2713) \033[0m") // (✔)
29+
fmt.Printf(" \033[32m (\u2713) \033[0m\n\n")
3030

3131
cmd := exec.Command("git", "rev-parse", "--is-inside-work-tree")
3232
if _, err := cmd.CombinedOutput(); err != nil {

0 commit comments

Comments
 (0)