diff options
Diffstat (limited to 'crates/mozart/src/commands/remove.rs')
| -rw-r--r-- | crates/mozart/src/commands/remove.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/remove.rs b/crates/mozart/src/commands/remove.rs index 2b1f1ec..d047ad3 100644 --- a/crates/mozart/src/commands/remove.rs +++ b/crates/mozart/src/commands/remove.rs @@ -36,7 +36,7 @@ pub struct RemoveArgs { pub no_audit: bool, /// Audit output format - #[arg(long)] + #[arg(long, value_parser = ["table", "plain", "json", "summary"])] pub audit_format: Option<String>, /// Do not block on security advisories @@ -430,6 +430,7 @@ pub async fn execute( classmap_authoritative: args.classmap_authoritative, apcu_autoloader: false, apcu_autoloader_prefix: None, + download_only: false, }, ) .await?; @@ -567,6 +568,7 @@ async fn remove_unused( classmap_authoritative: args.classmap_authoritative, apcu_autoloader: false, apcu_autoloader_prefix: None, + download_only: false, }, ) .await?; |
