summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-03-29 22:59:57 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-03-29 23:01:47 +0200
commit745cd8ab27480a3cf516a2684db2c4fd7cf2144c (patch)
treefeb950d52c3289b5112b81e3d3d6a79f0c94cb49 /src/lib.rs
parent87da80d972c00358b46172ec9661e6a3a307a0a5 (diff)
Check user group when creating shared repos
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c2eccbf..e96614f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -41,6 +41,6 @@ pub enum ShackleError {
UserReadError,
#[error("Path is not accessible")]
InvalidDirectory,
- #[error("`{0}`")]
- CustomError(String),
+ #[error("Unknown group")]
+ InvalidGroup,
}