Skip to content

Commit 56a67f2

Browse files
authored
fix: install script bin location (#1280)
Single tilde doesn't expand path, thus installing/polluting cwd.
1 parent 27e6c61 commit 56a67f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/website/public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ else
2525
exit 1
2626
fi
2727

28-
spotlight_path='~/.local/bin/spotlight'
28+
spotlight_path="$HOME/.local/bin/spotlight"
2929
spotlight_file="spotlight-$os-$arch$suffix"
3030
mkdir -p $(dirname $spotlight_path)
3131
echo "Downloading $spotlight_file..."

0 commit comments

Comments
 (0)