summaryrefslogtreecommitdiff
path: root/Biz/Ide/run
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-08-08 10:01:32 -0400
committerBen Sima <ben@bsima.me>2022-08-08 10:01:32 -0400
commitcd6f38a2e8d5b2f4198831aae0a37c568c69c2ae (patch)
tree8546248171260064e3d8e352a1a0de46707353b4 /Biz/Ide/run
parente9d639f7d6f21498c450db36d46e1e6ac6c0b17e (diff)
Ensure BIZ_ROOT is set in shell scripts
Diffstat (limited to 'Biz/Ide/run')
-rwxr-xr-xBiz/Ide/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Ide/run b/Biz/Ide/run
index 49cd72d..bf35e3e 100755
--- a/Biz/Ide/run
+++ b/Biz/Ide/run
@@ -3,4 +3,4 @@ set -eu
target=$1
shift
out=$(rg --only-matching ": out (\w*)" -r '$1' $target)
-exec "$BIZ_ROOT/_/bin/$out" "$@"
+exec "${BIZ_ROOT:?}/_/bin/$out" "$@"