Skip to content

Commit

Permalink
Fix: Pants install directory changed from ~/bin to ~/.local/bin
Browse files Browse the repository at this point in the history
resolves #1751
  • Loading branch information
hoyajigi committed Dec 22, 2023
1 parent 8ef6fdd commit 8a4535c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ bootstrap_pants() {
curl --proto '=https' --tlsv1.2 -fsSL https://static.pantsbuild.org/setup/get-pants.sh > /tmp/get-pants.sh
bash /tmp/get-pants.sh
if ! command -v pants &> /dev/null ; then
$sudo ln -s $HOME/bin/pants /usr/local/bin/pants
show_note "Symlinked $HOME/bin/pants from /usr/local/bin/pants as we could not find it from PATH..."
$sudo ln -s $HOME/.local/bin/pants /usr/local/bin/pants
show_note "Symlinked $HOME/.local/bin/pants from /usr/local/bin/pants as we could not find it from PATH..."
fi
;;
esac
Expand Down

0 comments on commit 8a4535c

Please sign in to comment.