@@ -45,14 +45,14 @@ func (r *RootCmd) publickey() *serpent.Command {
45
45
return xerrors .Errorf ("create codersdk client: %w" ,err )
46
46
}
47
47
48
- cliui .Infof (inv .Stdout ,
48
+ cliui .Info (inv .Stdout ,
49
49
"This is your public key for using " + pretty .Sprint (cliui .DefaultStyles .Field ,"git" )+ " in " +
50
50
"Coder. All clones with SSH will be authenticated automatically 🪄." ,
51
51
)
52
- cliui .Infof (inv .Stdout ,pretty .Sprint (cliui .DefaultStyles .Code ,strings .TrimSpace (key .PublicKey ))+ "\n " )
53
- cliui .Infof (inv .Stdout ,"Add to GitHub and GitLab:" )
54
- cliui .Infof (inv .Stdout ,"> https://github.com/settings/ssh/new" )
55
- cliui .Infof (inv .Stdout ,"> https://gitlab.com/-/profile/keys" )
52
+ cliui .Info (inv .Stdout ,pretty .Sprint (cliui .DefaultStyles .Code ,strings .TrimSpace (key .PublicKey ))+ "\n " )
53
+ cliui .Info (inv .Stdout ,"Add to GitHub and GitLab:" )
54
+ cliui .Info (inv .Stdout ,"> https://github.com/settings/ssh/new" )
55
+ cliui .Info (inv .Stdout ,"> https://gitlab.com/-/profile/keys" )
56
56
57
57
return nil
58
58
},