This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
pyenv
mirror of
https://github.com/pyenv/pyenv.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
240
Wiki
Activity
Browse Source
Merge pull request
#814
from m-o-e/never-use-hardlinks
Never use hardlinks. Never.
pull/487/head^2
Mislav Marohnić
10 years ago
parent
d740406daf
f6c1e5220a
commit
c18a3f9042
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libexec/rbenv-rehash
+ 1
- 1
libexec/rbenv-rehash
View File
@ -113,7 +113,7 @@ install_registered_shims() {
local shim file
for shim in $registered_shims; do
file="${SHIM_PATH}/${shim}"
[ -e "$file" ] ||
ln -f
"$PROTOTYPE_SHIM_PATH" "$file"
[ -e "$file" ] ||
cp
"$PROTOTYPE_SHIM_PATH" "$file"
done
}
Write
Preview
Loading…
Cancel
Save