(&self, version: &str)
| 33 | |
| 34 | impl BinDir { |
| 35 | pub fn version_dir(&self, version: &str) -> VersionBinDir { |
| 36 | VersionBinDir(self.0.join(version)) |
| 37 | } |
| 38 | |
| 39 | pub const CURRENT_VERSION_DIR_NAME: &str = "current"; |
| 40 | pub fn current_version_dir(&self) -> VersionBinDir { |