From: Joey Hess Date: Fri, 7 Mar 2025 21:15:54 +0000 (-0400) Subject: symlink, don't hardlink X-Git-Tag: archive/raspbian/10.20250416-2+rpi1~1^2~6^2~102 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9d6c052c2768c20ad45a13b237119bb8a35137f0;p=git-annex.git symlink, don't hardlink hardlink can cause problems with unlocked files --- diff --git a/doc/special_remotes/compute/git-annex-compute-wasmedge b/doc/special_remotes/compute/git-annex-compute-wasmedge index a734418125..b93adb9370 100755 --- a/doc/special_remotes/compute/git-annex-compute-wasmedge +++ b/doc/special_remotes/compute/git-annex-compute-wasmedge @@ -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