aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/console
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/console')
-rw-r--r--crates/shirabe/src/console/application.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/console/application.rs b/crates/shirabe/src/console/application.rs
index c9b06412..b4d98054 100644
--- a/crates/shirabe/src/console/application.rs
+++ b/crates/shirabe/src/console/application.rs
@@ -2046,7 +2046,7 @@ impl ApplicationHandle {
if use_parent_dir_if_no_json_available.as_bool() == Some(true) {
io.write_error(&format!("<info>No composer.json in current directory, changing working directory to {}</info>", dir));
} else {
- io.write_error("<info>Always want to use the parent dir? Use \"composer config --global use-parent-dir true\" to change the default.</info>");
+ io.write_error("<info>Always want to use the parent dir? Use \"shirabe config --global use-parent-dir true\" to change the default.</info>");
}
old_working_dir = Some(Platform::get_cwd(true).unwrap_or_default());
chdir(&dir);