Files
OpenQuery/uninstall.sh
2026-03-18 09:28:14 +01:00

17 lines
292 B
Bash
Executable File

#!/bin/bash
# Exit on error
set -e
INSTALL_PATH="/usr/bin/openquery"
if [ ! -f "$INSTALL_PATH" ]; then
echo "OpenQuery is not installed at $INSTALL_PATH"
exit 0
fi
echo "Removing OpenQuery from $INSTALL_PATH..."
sudo rm "$INSTALL_PATH"
echo "OpenQuery uninstalled successfully."