File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,10 @@ var cmdLogin = &Command{
1818 Description : "Log in to Scaleway API" ,
1919 Help : `Generates a configuration file in '/home/$USER/.scwrc'
2020containing credentials used to interact with the Scaleway API. This
21- configuration file is automatically used by the 'scw' commands.` ,
21+ configuration file is automatically used by the 'scw' commands.
22+
23+ You can get your credentials on https://cloud.scaleway.com/#/credentials
24+ ` ,
2225}
2326
2427func promptUser (prompt string , output * string , echo bool ) {
@@ -58,7 +61,8 @@ func runLogin(cmd *Command, args []string) {
5861 }
5962
6063 if len (organization ) == 0 {
61- promptUser ("Organization: " , & organization , true )
64+ fmt .Println ("You can get your credentials on https://cloud.scaleway.com/#/credentials" )
65+ promptUser ("Organization (access key): " , & organization , true )
6266 }
6367 if len (token ) == 0 {
6468 promptUser ("Token: " , & token , false )
You can’t perform that action at this time.
0 commit comments