constellation/bazel/mkosi/mkosi_wrapper.sh.in

15 lines
346 B
Bash
Raw Normal View History

2023-09-06 09:32:01 -04:00
#!/usr/bin/env bash
set -euo pipefail
shopt -s inherit_errexit
export PATH=/run/wrappers/bin:/run/current-system/sw/bin:/bin:/usr/bin:/usr/local/bin
VERSION_ARG=""
args=("$@")
if [[ -n ${VERSION_FILE+x} ]]; then
VERSION_ARG="--environment=IMAGE_VERSION=$(cat "${VERSION_FILE}")"
args+=("$VERSION_ARG")
fi
exec @@MKOSI@@ "${args[@]}" build