5 lines
139 B
Bash
Executable file
5 lines
139 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec "$ROOT_DIR/scripts/bootstrap.sh" "$@"
|