#!/usr/bin/env bash
set -euo pipefail

APP_NAME="ivs-profiling"
INSTALL_DIR="${HOME}/.local/share/${APP_NAME}"
BIN_FILE="${HOME}/.local/bin/ivs-profiling"

echo "Uninstalling ${APP_NAME}..."

rm -rf "${INSTALL_DIR}"
rm -f "${BIN_FILE}"

echo "Profiling uninstalled."