aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/audit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/audit.rs')
-rw-r--r--crates/mozart/src/commands/audit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/audit.rs b/crates/mozart/src/commands/audit.rs
index 9672d57..0b84ccf 100644
--- a/crates/mozart/src/commands/audit.rs
+++ b/crates/mozart/src/commands/audit.rs
@@ -44,7 +44,7 @@ pub async fn execute(
let working_dir = cli.working_dir()?;
// Load Composer state (reads composer.json + config)
- let composer = Composer::require(&working_dir)?;
+ let composer = Composer::require(io.clone(), &working_dir)?;
// Parse audit config from composer.json's config.audit section
let audit_config = AuditConfig::from_config(composer.config(), true, AuditFormat::Table)?;