aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/status_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/status_command.rs')
-rw-r--r--crates/shirabe/src/command/status_command.rs8
1 files changed, 4 insertions, 4 deletions
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)
{