From 7568fdf0bfdccfd3c115bc04e1934afce59e3f6c Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Sun, 1 Feb 2026 23:46:46 -0500 Subject: [PATCH] uv toll uninstall fix --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 03c49b6..e24249e 100644 --- a/Makefile +++ b/Makefile @@ -60,16 +60,15 @@ test: uninstall: @echo "Detecting OS and uninstalling dependencies..." + @uv tool uninstall hate_crack || true @if [ "$(shell uname)" = "Darwin" ]; then \ echo "Detected macOS"; \ command -v brew >/dev/null 2>&1 || { echo >&2 "Homebrew not found. Please uninstall Homebrew packages manually."; exit 1; }; \ brew uninstall --ignore-dependencies p7zip transmission-cli || true; \ - uv tool uninstall hate_crack || true; \ rm -rf ~/.cache/uv; \ elif [ -f /etc/debian_version ]; then \ echo "Detected Debian/Ubuntu"; \ sudo apt-get remove -y p7zip-full transmission-cli || true; \ - uv tool uninstall hate_crack || true; \ rm -rf ~/.cache/uv; \ else \ echo "Unsupported OS. Please uninstall dependencies manually."; \