From 62c827a7b858796a7f51de3eeff1d6c56c3afe7b Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 16:21:20 +0900 Subject: fix(compile): align ChangeReportInterface::get_local_changes return type --- crates/shirabe/src/command/status_command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 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); } -- cgit v1.3.1