Skip to content

Commit b51933d

Browse files
authored
[BUG] Hide unannounced commands (#4184)
## Description of changes Hide unannounced CLI commands from release
1 parent 6dde453 commit b51933d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

rust/cli/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ use utils::UtilsError;
1717

1818
#[derive(Subcommand, Debug)]
1919
enum Command {
20-
#[command(subcommand)]
20+
#[command(subcommand, hide = true)]
2121
Db(DbCommand),
2222
Docs,
2323
Install(InstallArgs),
24+
#[command(hide = true)]
2425
Login(LoginArgs),
25-
#[command(subcommand)]
26+
#[command(subcommand, hide = true)]
2627
Profile(ProfileCommand),
2728
Run(RunArgs),
2829
Support,

0 commit comments

Comments
 (0)