diff options
Diffstat (limited to 'crates/mozart/src/commands/global.rs')
| -rw-r--r-- | crates/mozart/src/commands/global.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/global.rs b/crates/mozart/src/commands/global.rs index 1a8a5f8..05e8aae 100644 --- a/crates/mozart/src/commands/global.rs +++ b/crates/mozart/src/commands/global.rs @@ -1,4 +1,5 @@ use clap::Args; +use mozart_core::composer::composer_home; #[derive(Args)] pub struct GlobalArgs { @@ -27,7 +28,7 @@ pub async fn execute( } }; - let home = super::config_helpers::composer_home(); + let home = composer_home(); fs::create_dir_all(&home)?; |
