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/downloader/vcs_downloader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/shirabe/src/downloader/vcs_downloader.rs') diff --git a/crates/shirabe/src/downloader/vcs_downloader.rs b/crates/shirabe/src/downloader/vcs_downloader.rs index 05593e5..5e19016 100644 --- a/crates/shirabe/src/downloader/vcs_downloader.rs +++ b/crates/shirabe/src/downloader/vcs_downloader.rs @@ -457,7 +457,7 @@ pub trait VcsDownloader: _update: bool, ) -> Result> { // the default implementation just fails if there are any changes, override in child classes to provide stash-ability - if self.get_local_changes(package, path.to_string()).is_some() { + if self.get_local_changes(package, path)?.is_some() { return Err(RuntimeException { message: format!("Source directory {} has uncommitted changes.", path), code: 0, -- cgit v1.3.1