5 lines
144 B
Bash
Executable File
5 lines
144 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec node "$SCRIPT_DIR/install-whispergate-openclaw.mjs" "$@"
|