Merge pull request #814 from m-o-e/never-use-hardlinks
Never use hardlinks. Never.
This commit is contained in:
commit
c18a3f9042
@ -113,7 +113,7 @@ install_registered_shims() {
|
|||||||
local shim file
|
local shim file
|
||||||
for shim in $registered_shims; do
|
for shim in $registered_shims; do
|
||||||
file="${SHIM_PATH}/${shim}"
|
file="${SHIM_PATH}/${shim}"
|
||||||
[ -e "$file" ] || ln -f "$PROTOTYPE_SHIM_PATH" "$file"
|
[ -e "$file" ] || cp "$PROTOTYPE_SHIM_PATH" "$file"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user