diff options
Diffstat (limited to 'crates/mozart')
| -rw-r--r-- | crates/mozart/src/commands/audit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/audit.rs b/crates/mozart/src/commands/audit.rs index 72d4408..eafcba4 100644 --- a/crates/mozart/src/commands/audit.rs +++ b/crates/mozart/src/commands/audit.rs @@ -46,7 +46,7 @@ pub async fn execute( let composer = Composer::require(&working_dir)?; // Parse audit config from composer.json's config.audit section - let audit_config = AuditConfig::from_config(composer.config(), true, AuditFormat::Table); + let audit_config = AuditConfig::from_config(composer.config(), true, AuditFormat::Table)?; // Resolve format: CLI arg > config default (table) let format = match args.format.as_deref() { |
