Skip to content

Commit

Permalink
Minor fix to --no-redirect flag help (#562)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Paterson <[email protected]>
  • Loading branch information
jrodewig and ptpaterson authored Jan 15, 2025
1 parent ca540aa commit 9e8aecc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/commands/login.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function buildLoginCommand(yargs) {
alias: "n",
type: "boolean",
description:
"Login without redirecting to a local callback server. Use this option if you are unable to open a browser on your local machine.",
"Log in without redirecting to a local callback server. Use this option if you are unable to open a browser on your local machine.",
default: false,
},
user: {
Expand All @@ -120,6 +120,10 @@ function buildLoginCommand(yargs) {
.example([
["$0 login", "Log in as the 'default' user."],
["$0 login --user john_doe", "Log in as the 'john_doe' user."],
[
"$0 login --user john_doe --no-redirect",
"Log in without redirecting to a local callback server.",
],
]);
}

Expand Down

0 comments on commit 9e8aecc

Please sign in to comment.