We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081f100 commit b65172aCopy full SHA for b65172a
packages/opencode/src/cli/cmd/auth.ts
@@ -16,7 +16,7 @@ export const AuthCommand = cmd({
16
describe: "manage credentials",
17
builder: (yargs) =>
18
yargs.command(AuthLoginCommand).command(AuthLogoutCommand).command(AuthListCommand).demandCommand(),
19
- async handler() {},
+ async handler() { },
20
})
21
22
export const AuthListCommand = cmd({
@@ -61,7 +61,10 @@ export const AuthListCommand = cmd({
61
prompts.log.info(`${provider} ${UI.Style.TEXT_DIM}${envVar}`)
62
}
63
64
- prompts.outro(`${activeEnvVars.length} environment variables`)
+ prompts.outro(
65
+ `${activeEnvVars.length} environment variable`
66
+ + (activeEnvVars.length === 1 ? "" : "s")
67
+ )
68
69
},
70
0 commit comments