Initial import of db-manager
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
PLUGIN_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||
SCRIPT="$PLUGIN_DIR/scripts/install.sh"
|
||||
|
||||
if [ ! -x "$SCRIPT" ]; then
|
||||
chmod 755 "$SCRIPT" 2>/dev/null || true
|
||||
fi
|
||||
|
||||
exec "$SCRIPT"
|
||||
Reference in New Issue
Block a user