aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/exec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/exec.rs')
-rw-r--r--crates/mozart/src/commands/exec.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/exec.rs b/crates/mozart/src/commands/exec.rs
index 9ef1624..32781a5 100644
--- a/crates/mozart/src/commands/exec.rs
+++ b/crates/mozart/src/commands/exec.rs
@@ -17,7 +17,11 @@ pub struct ExecArgs {
// ─── Main entry point ────────────────────────────────────────────────────────
-pub fn execute(args: &ExecArgs, cli: &super::Cli) -> anyhow::Result<()> {
+pub fn execute(
+ args: &ExecArgs,
+ cli: &super::Cli,
+ _console: &crate::console::Console,
+) -> anyhow::Result<()> {
let working_dir = match &cli.working_dir {
Some(dir) => PathBuf::from(dir),
None => std::env::current_dir()?,