symlink, don't hardlink
hardlink can cause problems with unlocked files
This commit is contained in:
parent
45d7f3ca4b
commit
9d6c052c27
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue