From 9d6c052c2768c20ad45a13b237119bb8a35137f0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 7 Mar 2025 17:15:54 -0400 Subject: [PATCH] symlink, don't hardlink hardlink can cause problems with unlocked files --- doc/special_remotes/compute/git-annex-compute-wasmedge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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