From 1e44f5723e4c0e0903d00a61f254901e612fe5e1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 12 Jun 2026 01:01:35 +0900 Subject: feat(symfony-console): port Symfony Console and make the workspace compile Co-Authored-By: Claude Opus 4.8 --- crates/shirabe/src/command/archive_command.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'crates/shirabe/src/command/archive_command.rs') diff --git a/crates/shirabe/src/command/archive_command.rs b/crates/shirabe/src/command/archive_command.rs index 53159f8..f657ef4 100644 --- a/crates/shirabe/src/command/archive_command.rs +++ b/crates/shirabe/src/command/archive_command.rs @@ -88,7 +88,7 @@ impl ArchiveCommand { let format = input .borrow() - .get_option("format") + .get_option("format")? .as_string() .map(|s| s.to_string()) .unwrap_or_else(|| { @@ -102,7 +102,7 @@ impl ArchiveCommand { let dir = input .borrow() - .get_option("dir") + .get_option("dir")? .as_string() .map(|s| s.to_string()) .unwrap_or_else(|| { @@ -120,24 +120,24 @@ impl ArchiveCommand { &config, input .borrow() - .get_argument("package") + .get_argument("package")? .as_string() .map(|s| s.to_string()), input .borrow() - .get_argument("version") + .get_argument("version")? .as_string() .map(|s| s.to_string()), &format, &dir, input .borrow() - .get_option("file") + .get_option("file")? .as_string() .map(|s| s.to_string()), input .borrow() - .get_option("ignore-filters") + .get_option("ignore-filters")? .as_bool() .unwrap_or(false), composer.as_ref(), -- cgit v1.3.1