initial release
This commit is contained in:
16
uninstall.sh
Executable file
16
uninstall.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/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."
|
||||
Reference in New Issue
Block a user