diff options
Diffstat (limited to 'crates/shirabe/src/repository/path_repository.rs')
| -rw-r--r-- | crates/shirabe/src/repository/path_repository.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/repository/path_repository.rs b/crates/shirabe/src/repository/path_repository.rs index 879b769c..ec2da043 100644 --- a/crates/shirabe/src/repository/path_repository.rs +++ b/crates/shirabe/src/repository/path_repository.rs @@ -464,8 +464,8 @@ impl RepositoryInterface for PathRepository { self.inner.get_providers(package_name) } - fn get_repo_name(&self) -> String { - PathRepository::get_repo_name(self) + fn get_repo_name(&self) -> anyhow::Result<String> { + Ok(PathRepository::get_repo_name(self)) } fn as_any(&self) -> &dyn std::any::Any { |
