From ff6f5cd13328f1a41fcbf037fe1ee59c3980f925 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 12 Nov 2025 22:46:36 +0000 Subject: [PATCH] cli: Hide config-diff and delete-deployment These were added without docs or tests and only apply right now to the composefs backend. Hide them until they meet the above quality bars. Signed-off-by: Colin Walters --- crates/lib/src/cli.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/lib/src/cli.rs b/crates/lib/src/cli.rs index 9331db466..f98ab07d9 100644 --- a/crates/lib/src/cli.rs +++ b/crates/lib/src/cli.rs @@ -680,7 +680,9 @@ pub(crate) enum Opt { Internals(InternalsOpts), ComposefsFinalizeStaged, /// Diff current /etc configuration versus default + #[clap(hide = true)] ConfigDiff, + #[clap(hide = true)] DeleteDeployment { depl_id: String, },