diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-07 10:30:59 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-07 10:30:59 +0200 |
commit | 634aa70523867b4e67e5c837695df8b6595c9ccb (patch) | |
tree | 0c7c34e223760797d0f905cb67b57539e6bbca0f /src/error/mod.rs | |
parent | chore(version): v0.1.2 (diff) | |
download | back-634aa70523867b4e67e5c837695df8b6595c9ccb.zip |
fix(back::config::BackRepositories): Strip a `.git` suffix from repo paths
Diffstat (limited to 'src/error/mod.rs')
-rw-r--r-- | src/error/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/error/mod.rs b/src/error/mod.rs index f109e11..0d25d90 100644 --- a/src/error/mod.rs +++ b/src/error/mod.rs @@ -58,7 +58,10 @@ pub enum Error { #[error("while trying to read an identity's data from a replica: {0}")] RepoIdentityRead(#[from] replica::entity::read::Error<Identity>), - #[error("failed to find the repository at path: '{repository_path}'")] + #[error( + "failed to find the repository at path: '{repository_path}' (Not registered in \ + projects.list)" + )] RepoFind { repository_path: PathBuf }, #[error("while iteration over the refs in a repository: {0}")] |