Files
db-manager/uninstall.sh
T
2026-07-04 15:02:24 +02:00

12 lines
195 B
Bash
Executable File

#!/bin/sh
set -eu
PLUGIN_DIR="$(cd "$(dirname "$0")" && pwd)"
SCRIPT="$PLUGIN_DIR/scripts/uninstall.sh"
if [ ! -x "$SCRIPT" ]; then
chmod 755 "$SCRIPT" 2>/dev/null || true
fi
exec "$SCRIPT"