Skip to content

Commit

Permalink
install.sh: Improve reviewability
Browse files Browse the repository at this point in the history
By using "install" rather than "sudo px.pex --install".
  • Loading branch information
walles committed Jun 11, 2016
1 parent 2d7c5d1 commit d527f47
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ curl -L -s "$URL" > $TEMPFILE
chmod a+x $TEMPFILE

echo "Installing the latest release..."
echo "sudo px --install"
sudo $TEMPFILE --install
echo
echo "sudo install px.pex /usr/local/bin/px"
sudo install $TEMPFILE /usr/local/bin/px
echo "sudo install px.pex /usr/local/bin/ptop"
sudo install $TEMPFILE /usr/local/bin/ptop

rm -f $TEMPFILE

Expand Down

0 comments on commit d527f47

Please sign in to comment.