From 1df86a7831f4dc9c572ee2b7406a56e518f66672 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 1 Dec 2025 13:07:08 -0500 Subject: Always bild on run.sh Otherwise we end up running stale artifacts and that's no good. --- Omni/Ide/run.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Omni/Ide') 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" "$@" -- cgit v1.2.3