summaryrefslogtreecommitdiff
path: root/Omni/Ide/run.sh
blob: d4811a4b4eb986cb3134df60fc0894d66762fdf7 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
set -eu
target=$1
shift
out=$(bild --plan "$target" | jq --raw-output ".\"${target}\".out")
if [[ ! -f "$out" ]]; then
  bild "$target" || exit 1
fi
exec "${CODEROOT:?}/_/bin/$out" "$@"