diff options
Diffstat (limited to 'crates/shirabe/src/repository/array_repository.rs')
| -rw-r--r-- | crates/shirabe/src/repository/array_repository.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/repository/array_repository.rs b/crates/shirabe/src/repository/array_repository.rs index 30598b62..c05434fc 100644 --- a/crates/shirabe/src/repository/array_repository.rs +++ b/crates/shirabe/src/repository/array_repository.rs @@ -231,13 +231,13 @@ impl RepositoryInterface for ArrayRepository { Ok(self.base_count()) } - fn get_repo_name(&self) -> String { + fn get_repo_name(&self) -> anyhow::Result<String> { let count = self.base_count(); - format!( + Ok(format!( "array repo (defining {} package{})", count, if count > 1 { "s" } else { "" }, - ) + )) } fn load_packages( |
