#!/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"
