mas/script/uninstall
Chris Araman 64695e2457
📜 Lint
2021-03-28 14:12:02 -07:00

21 lines
381 B
Bash
Executable file

#!/bin/bash -e
#
# script/uninstall
# mas
#
# Removes mas and MasKit from PREFIX.
#
# 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
echo "==> 🔥 Uninstalling mas from $PREFIX"
trash "$PREFIX/Frameworks/MasKit.framework"
trash "$PREFIX/bin/mas"