From 08ad403ed366ac5839cb63333b5ba2c5007c655e Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 20 Jun 2026 00:03:28 +0900 Subject: feat(help): replace all "php composer.phar" in help text with "shirabe" --- crates/shirabe/src/command/config_command.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crates/shirabe/src/command/config_command.rs') diff --git a/crates/shirabe/src/command/config_command.rs b/crates/shirabe/src/command/config_command.rs index 0243d6a..0752052 100644 --- a/crates/shirabe/src/command/config_command.rs +++ b/crates/shirabe/src/command/config_command.rs @@ -789,7 +789,7 @@ impl Command for ConfigCommand { } return Err(RuntimeException { - message: "You must pass the type and a url. Example: php composer.phar config repositories.foo vcs https://bar.com".to_string(), + message: "You must pass the type and a url. Example: shirabe config repositories.foo vcs https://bar.com".to_string(), code: 0, } .into()); @@ -1285,7 +1285,8 @@ impl ConfigCommand { let (validator, normalizer) = callbacks; if 1 != values.len() { return Err(RuntimeException { - message: "You can only pass one value. Example: php composer.phar config process-timeout 300".to_string(), + message: "You can only pass one value. Example: shirabe config process-timeout 300" + .to_string(), code: 0, } .into()); -- cgit v1.3.1