summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/filestore/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filestore/path.rs b/src/filestore/path.rs
index a03ab83..60d8e56 100644
--- a/src/filestore/path.rs
+++ b/src/filestore/path.rs
@@ -139,7 +139,7 @@ impl AsRef<Path> for ArtifactPath {
pub struct FullArtifactPath<'a>(&'a StoreRoot, &'a ArtifactPath);
impl<'a> FullArtifactPath<'a> {
- fn joined(&self) -> PathBuf {
+ pub fn joined(&self) -> PathBuf {
self.0 .0.join(&self.1 .0)
}