aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotup/src/depot.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotup/src/depot.rs b/dotup/src/depot.rs
index 823dfa4..6abe29f 100644
--- a/dotup/src/depot.rs
+++ b/dotup/src/depot.rs
@@ -132,7 +132,7 @@ impl Link {
132 &self.destination 132 &self.destination
133 } 133 }
134 134
135 fn install_destination(&self, install_base: &Path) -> std::io::Result<PathBuf> { 135 pub fn install_destination(&self, install_base: &Path) -> std::io::Result<PathBuf> {
136 utils::weakly_canonical(install_base.join(self.destination())) 136 utils::weakly_canonical(install_base.join(self.destination()))
137 } 137 }
138} 138}