Skip to content

Commit f521b0e

Browse files
committed
fix(dev): Symbolic links from absolute path
1 parent 3ecbd5a commit f521b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/symlink-bins.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22
for file in "${1:-.}"/bin/*; do
3-
ln -sf "$file" "/usr/local/bin/$(basename "$file")"
3+
ln -sf "$(realpath "$file")" "/usr/local/bin/$(basename "$file")"
44
done

0 commit comments

Comments
 (0)