aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/status_command.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 16:21:20 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 16:21:29 +0900
commit62c827a7b858796a7f51de3eeff1d6c56c3afe7b (patch)
tree035d33263cdebac4e6db76474af911b70d10342e /crates/shirabe/src/command/status_command.rs
parenta7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad (diff)
downloadphp-shirabe-62c827a7b858796a7f51de3eeff1d6c56c3afe7b.tar.gz
php-shirabe-62c827a7b858796a7f51de3eeff1d6c56c3afe7b.tar.zst
php-shirabe-62c827a7b858796a7f51de3eeff1d6c56c3afe7b.zip
fix(compile): align ChangeReportInterface::get_local_changes return type
Diffstat (limited to 'crates/shirabe/src/command/status_command.rs')
-rw-r--r--crates/shirabe/src/command/status_command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/command/status_command.rs b/crates/shirabe/src/command/status_command.rs
index e4f25cd..15749ae 100644
--- a/crates/shirabe/src/command/status_command.rs
+++ b/crates/shirabe/src/command/status_command.rs
@@ -112,7 +112,7 @@ impl StatusCommand {
}
if let Some(changes) =
- change_reporter.get_local_changes(package.as_ref(), target_dir.clone())
+ change_reporter.get_local_changes(package.as_ref(), &target_dir)?
{
errors.insert(target_dir.clone(), changes);
}