mirror of
https://github.com/rbenv/rbenv.git
synced 2025-01-01 14:45:03 +01:00
Never use hardlinks. Never.
This commit is contained in:
parent
d740406daf
commit
f6c1e5220a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue