diff options
| author | Ben Sima <ben@bensima.com> | 2025-12-01 13:07:08 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-12-01 13:07:08 -0500 |
| commit | 1df86a7831f4dc9c572ee2b7406a56e518f66672 (patch) | |
| tree | a425268a2ab2aed548c100cf4168455eaf89f2b9 /Omni/Ide | |
| parent | d9e8cd9834fc265a86ef10b2c6680141ff31087c (diff) | |
Always bild on run.sh
Otherwise we end up running stale artifacts and that's no good.
Diffstat (limited to 'Omni/Ide')
| -rwxr-xr-x | Omni/Ide/run.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Omni/Ide/run.sh b/Omni/Ide/run.sh index e49d8bd..c426969 100755 --- a/Omni/Ide/run.sh +++ b/Omni/Ide/run.sh @@ -3,7 +3,5 @@ set -eu target=$1 shift out=$(bild --plan "$target" 2>&1 | tail -1 | jq --raw-output ".\"${target}\".out") -if [[ ! -f "${CODEROOT:?}/_/bin/$out" ]]; then - bild "$target" || exit 1 -fi +bild "$target" || exit 1 exec "${CODEROOT:?}/_/bin/$out" "$@" |
