mas/script/uninstall

22 lines
387 B
Text
Raw Normal View History

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