mas/script/uninstall

22 lines
381 B
Text
Raw Normal View History

2018-10-17 15:47:08 -06:00
#!/bin/bash -e
#
# script/uninstall
# mas
#
# Removes mas and MasKit from PREFIX.
#
2018-10-17 15:47:08 -06:00
# Override default prefix path with optional 1st arg
if test -n "$1"; then
2021-03-21 16:50:09 -07:00
PREFIX="$1"
elif [[ $(uname -m) == 'arm64' ]]; then
2021-03-21 16:50:09 -07:00
PREFIX=/opt/homebrew
else
2021-03-21 16:50:09 -07:00
PREFIX=/usr/local
fi
2018-10-17 15:47:08 -06:00
echo "==> 🔥 Uninstalling mas from $PREFIX"
trash "$PREFIX/Frameworks/MasKit.framework"
trash "$PREFIX/bin/mas"