From 8e0b07c9fb852544b385f7324d9beebfe634e80b Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Wed, 17 Jun 2026 14:20:38 -0600 Subject: [PATCH] docs: Updated the --fresh command help message --- src/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/mod.rs b/src/cli/mod.rs index 7f802c3..45d1144 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -183,7 +183,7 @@ pub struct Cli { /// Launch Coyote inside a Docker sandbox (via `sbx`); name defaults to current directory basename #[arg(long, value_name = "NAME")] pub sandbox: Option>, - /// Create the sandbox without copying host config or vault password file + /// Create the sandbox without bootstrapping the host config or vault password file #[arg(long, requires = "sandbox")] pub fresh: bool, }