Skip to content

Commit

Permalink
fix ioctl update failed on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
millken committed Nov 1, 2023
1 parent 6125a8a commit 7b19783
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions install-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ BREW_UPDATE_CMD="brew update"
BREW_INSTALL_CMD="brew install ioctl"
BREW_REINSTALL_CMD="brew reinstall ioctl"
BREW_UNSTABLE_TAP_CMD="brew tap iotexproject/ioctl-unstable"
BREW_UNSTABLE_INSTALL_CMD="brew install --HEAD iotexproject/ioctl-unstable/ioctl-unstable"
BREW_UNSTABLE_INSTALL_CMD="brew install iotexproject/ioctl-unstable/ioctl-unstable"
BREW_UNSTABLE_REINSTALL_CMD="brew reinstall ioctl-unstable"
BREW_INSTALLED_PATH="/usr/local/bin"

Expand Down Expand Up @@ -122,27 +122,20 @@ else
fi

if [ "${OS}" = "darwin" ];then
if test -x "$(command -v brew)"; then
if test -x "$(command -v brew)"; then
if [ "$1" = "unstable" ]; then
if [ `command -v ioctl` ]; then
rm -f $BREW_INSTALLED_PATH/ioctl
fi

if [ `command -v ioctl-unstable` ]; then
$BREW_UNSTABLE_REINSTALL_CMD
else
$BREW_UNSTABLE_TAP_CMD && $BREW_UNSTABLE_INSTALL_CMD
fi
ln -s $BREW_INSTALLED_PATH/ioctl-unstable $BREW_INSTALLED_PATH/ioctl
echo "Command-line tools is installed to `command -v ioctl-unstable`"
else
if [ `command -v ioctl` ]; then
rm -f $BREW_INSTALLED_PATH/ioctl
$BREW_UPDATE_CMD && $BREW_REINSTALL_CMD
else
$BREW_UPDATE_CMD && $BREW_INSTALL_CMD
fi

echo "Command-line tools is installed to `command -v ioctl`"
fi
exit 0
Expand Down

0 comments on commit 7b19783

Please sign in to comment.