1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 14:53:53 -05:00

Merge pull request #814 from m-o-e/never-use-hardlinks

Never use hardlinks. Never.
This commit is contained in:
Mislav Marohnić
2015-10-29 17:25:26 +01:00

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
}