diff options
Diffstat (limited to 'crates/mozart/src/commands/show.rs')
| -rw-r--r-- | crates/mozart/src/commands/show.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/show.rs b/crates/mozart/src/commands/show.rs index 498d170..a8ae995 100644 --- a/crates/mozart/src/commands/show.rs +++ b/crates/mozart/src/commands/show.rs @@ -99,7 +99,11 @@ pub struct ShowArgs { pub ignore_platform_reqs: bool, } -pub fn execute(args: &ShowArgs, cli: &super::Cli) -> anyhow::Result<()> { +pub fn execute( + args: &ShowArgs, + 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()?, |
