5 lines
145 B
Bash
Executable File
5 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
ROOT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec bash "$ROOT_DIR/live-platform/scripts/install-core.sh" "$@"
|