summaryrefslogtreecommitdiff
path: root/Biz/Ide/run.sh
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2024-05-20 22:07:00 -0400
committerBen Sima <ben@bsima.me>2024-05-20 23:15:31 -0400
commit027dcce5d199d914c9c560f354fba71ef4974a00 (patch)
tree89241c7219118a5fc064b2150382e57a60a91900 /Biz/Ide/run.sh
parent20d55fa3131f8dc5468579acdd68c7f6572779c1 (diff)
Minor Ide changes & fixes
- ns.sh was broken because I never updated the commands to include the .sh extensions - changed a few other UI things in ns.sh to support my workflow - run.sh was broken when the exe name had a hyphen in it, so just use bild --plan instead of regex - changed the noqa to include the English name of the ignored rule because lets be real I'll never remember what A003 means
Diffstat (limited to 'Biz/Ide/run.sh')
-rwxr-xr-xBiz/Ide/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Ide/run.sh b/Biz/Ide/run.sh
index 8acb519..506aa92 100755
--- a/Biz/Ide/run.sh
+++ b/Biz/Ide/run.sh
@@ -2,5 +2,5 @@
set -eu
target=$1
shift
-out=$(rg --only-matching ": out (\w*)" -r '$1' "$target")
+out=$(bild --plan "$target" | jq --raw-output ".\"${target}\".out")
exec "${CODEROOT:?}/_/bin/$out" "$@"