diff options
| author | Kit Langton <[email protected]> | 2026-03-12 22:22:16 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-12 22:22:16 -0400 |
| commit | 092f654f63e6361a931d5bd30c1f64a063b3ec4a (patch) | |
| tree | fa8a495efbee9a49f379dd5516122c0ebd064dcd | |
| parent | 96b1d8f639991e896bc8d31afe64d6309bf3ccd2 (diff) | |
| download | opencode-092f654f63e6361a931d5bd30c1f64a063b3ec4a.tar.gz opencode-092f654f63e6361a931d5bd30c1f64a063b3ec4a.zip | |
fix(cli): hide console command from help output (#17277)
| -rw-r--r-- | packages/opencode/src/cli/cmd/account.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/cli/cmd/account.ts b/packages/opencode/src/cli/cmd/account.ts index 78aadca62..8ad42c5eb 100644 --- a/packages/opencode/src/cli/cmd/account.ts +++ b/packages/opencode/src/cli/cmd/account.ts @@ -195,7 +195,7 @@ export const OrgsCommand = cmd({ export const ConsoleCommand = cmd({ command: "console", - describe: "manage console account", + describe: false, builder: (yargs) => yargs .command({ |
