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/check_platform_reqs_command.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/command/check_platform_reqs_command.rs') diff --git a/crates/shirabe/src/command/check_platform_reqs_command.rs b/crates/shirabe/src/command/check_platform_reqs_command.rs index 2742f6f..658d049 100644 --- a/crates/shirabe/src/command/check_platform_reqs_command.rs +++ b/crates/shirabe/src/command/check_platform_reqs_command.rs @@ -60,7 +60,7 @@ impl CheckPlatformReqsCommand { let no_dev = input .borrow() - .get_option("no-dev") + .get_option("no-dev")? .as_bool() .unwrap_or(false); @@ -69,7 +69,7 @@ impl CheckPlatformReqsCommand { let installed_repo_base: crate::repository::RepositoryInterfaceHandle = if input .borrow() - .get_option("lock") + .get_option("lock")? .as_bool() .unwrap_or(false) { @@ -248,7 +248,7 @@ impl CheckPlatformReqsCommand { let format = input .borrow() - .get_option("format") + .get_option("format")? .as_string() .unwrap_or("text") .to_string(); -- cgit v1.3.1