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/status_command.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/shirabe/src/command/status_command.rs') diff --git a/crates/shirabe/src/command/status_command.rs b/crates/shirabe/src/command/status_command.rs index 0febf1e..bbff681 100644 --- a/crates/shirabe/src/command/status_command.rs +++ b/crates/shirabe/src/command/status_command.rs @@ -218,7 +218,7 @@ impl StatusCommand { for (path, changes) in &errors { if input .borrow() - .get_option("verbose") + .get_option("verbose")? .as_bool() .unwrap_or(false) { @@ -241,7 +241,7 @@ impl StatusCommand { for (path, changes) in &unpushed_changes { if input .borrow() - .get_option("verbose") + .get_option("verbose")? .as_bool() .unwrap_or(false) { @@ -266,7 +266,7 @@ impl StatusCommand { for (path, changes) in &vcs_version_changes { if input .borrow() - .get_option("verbose") + .get_option("verbose")? .as_bool() .unwrap_or(false) { @@ -332,7 +332,7 @@ impl StatusCommand { if (!errors.is_empty() || !unpushed_changes.is_empty() || !vcs_version_changes.is_empty()) && !input .borrow() - .get_option("verbose") + .get_option("verbose")? .as_bool() .unwrap_or(false) { -- cgit v1.3.1