diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-11-26 14:30:11 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-11-26 14:30:11 +0530 |
commit | 747e4795424c6f9112f0e64bcb434df42b2ba8c5 (patch) | |
tree | 080a85cdf9a2f001562d9583f1e911c70497839d /cmd/login.go | |
parent | 50f211800946318ff4e3c40c1fc497c149b0380d (diff) |
fixed help messages, etc
Diffstat (limited to 'cmd/login.go')
-rw-r--r-- | cmd/login.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/login.go b/cmd/login.go index 92a4c92..453d744 100644 --- a/cmd/login.go +++ b/cmd/login.go @@ -20,7 +20,7 @@ package cmd import ( "os" - "fmt" + "fmt" "github.com/spf13/cobra" "github.com/spf13/viper" "github.com/MikunoNaka/macli/auth" @@ -38,7 +38,7 @@ var loginCmd = &cobra.Command { " - Inside the form you can set all the details to whatever you'd like\n" + " - For macli to work properly, you only need to set \x1b[33m\"App Redirect Url\"\x1b[0m to \x1b[36mhttp://localhost:8000\x1b[0m\n" + " - After that, hit submit, then copy your Client ID, run `macli login` and paste in your Client ID.\n" + - " - \x1b[31mIf after running `macli login` it opens a dialogue box in the browser asking for credentials,\n and not the MyAnimeList login page, that means you have entered your Client ID wrong.\x1b[0m\n" + + " - \x1b[31mIf after running `macli login` it opens a dialogue box in the browser asking for credentials,\n and not the MyAnimeList login page, that means you have entered your Client ID wrong. \n (you might need to wait for a few minutes after creating a new ID)\x1b[0m\n" + "", Run: func(cmd *cobra.Command, args []string) { var storeClientId bool |