CD/CD consolidation
This commit is contained in:
10
devops/offline/airgap/build_bootstrap_pack.sh
Normal file
10
devops/offline/airgap/build_bootstrap_pack.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/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"
|
||||
Reference in New Issue
Block a user