blob: c426969e659d35814815424e50f1a414d16a8b85 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env bash
set -eu
target=$1
shift
out=$(bild --plan "$target" 2>&1 | tail -1 | jq --raw-output ".\"${target}\".out")
bild "$target" || exit 1
exec "${CODEROOT:?}/_/bin/$out" "$@"
|