11 lines
349 B
Bash
11 lines
349 B
Bash
#!/usr/bin/env bash
|
|
# Thin wrapper for build_bootstrap_pack.py
|
|
# Usage: ./build_bootstrap_pack.sh config.json out/bootstrap-pack
|
|
set -euo pipefail
|
|
if [[ $# -lt 2 ]]; then
|
|
echo "Usage: $0 <config.json> <output-dir>" >&2
|
|
exit 2
|
|
fi
|
|
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
|
|
python3 "$SCRIPT_DIR/build_bootstrap_pack.py" --config "$1" --output "$2"
|