Skip to content

Commit b30fa47

Browse files
committed
adjust help output
1 parent 7fe4019 commit b30fa47

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ yargs(hideBin(process.argv))
116116
})
117117
.command({
118118
command: "list-profiles",
119-
desc: "List all currently configured profiles.",
119+
desc: "List all currently configured profiles",
120120
handler: listProfilesHandler,
121121
})
122122
.command({
@@ -126,27 +126,27 @@ yargs(hideBin(process.argv))
126126
})
127127
.option("p", {
128128
alias: "profile",
129-
describe: "The SSO profile to use.",
129+
describe: "The SSO profile to use",
130130
type: "string",
131131
})
132132
.option("a", {
133133
alias: "account",
134-
describe: "The name of the account you wish to sign into.",
134+
describe: "The name of the account you wish to sign into",
135135
type: "string",
136136
})
137137
.option("r", {
138138
alias: "role",
139-
describe: "The role you wish to assume for the specified account.",
139+
describe: "The role you wish to assume for the specified account",
140140
type: "string",
141141
})
142142
.option("f", {
143143
alias: "force-new-token",
144-
describe: "Force fetch a new access token for AWS SSO.",
144+
describe: "Force fetch a new access token for AWS SSO",
145145
type: "boolean",
146146
})
147147
.option("w", {
148148
alias: "web",
149-
describe: "Open selected AWS account in your web browser.",
149+
describe: "Open selected AWS account in your web browser",
150150
type: "boolean",
151151
})
152152
.wrap(90)

0 commit comments

Comments
 (0)