symlink, don't hardlink

hardlink can cause problems with unlocked files
This commit is contained in:
Joey Hess 2025-03-07 17:15:54 -04:00
parent 45d7f3ca4b
commit 9d6c052c27
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -23,7 +23,7 @@ while [ -n "$1" ]; do
if [ -n "$input" ]; then
p="./$1"
mkdir -p "$(dirname "$p")"
ln $(realpath "$input") "$p"
ln -s $(realpath "$input") "$p"
if [ -z "$wasm" ]; then
wasm="$p"
fi