diff options
| -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" "$@" |
