We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66acdf9 commit 766cfe1Copy full SHA for 766cfe1
src/gemset.rs
@@ -68,7 +68,9 @@ impl Gemset {
68
// Do the same for the PATH env variable for binaries
69
env_map
70
.entry("PATH".to_string())
71
- .and_modify(|path| *path = format!("{}:{}", path, self.gem_home.join("bin").display()))
+ .and_modify(|path| {
72
+ *path = format!("{}:{}", path, self.gem_home.join("bin").display())
73
+ })
74
.or_insert(self.gem_home.join("bin").display().to_string());
75
76
env_map.into_iter().collect()
0 commit comments