diff options
author | Ben Sima <ben@bsima.me> | 2023-09-21 22:30:17 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-10-25 11:18:12 -0400 |
commit | f9eb9a7b9887bf9d0860f67c053772684d42b989 (patch) | |
tree | 0caaf029a5ced4ef3d0bbc139ae07b86d3dfdd38 /Biz | |
parent | 6107f8178e26ada67e5d5ec60501e24528b3db56 (diff) |
Rename BIZ_ROOT to CODEROOT
BIZ_ROOT was too specific. CODEROOT allows for other (non-biz) projects to live
in the root of the repo. I didn't want to call it GIT_ROOT because maybe someday
I won't want to use git. But I'll never not use code.
Diffstat (limited to 'Biz')
-rwxr-xr-x | Biz/Ide/repl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Biz/Ide/repl b/Biz/Ide/repl index b10f0f0..fcc7eba 100755 --- a/Biz/Ide/repl +++ b/Biz/Ide/repl @@ -33,13 +33,11 @@ fi packageSet=$(jq --raw-output '.[].packageSet' <<< $json) module=$(jq --raw-output '.[].mainModule' <<< $json) BILD="(import ${CODEROOT:?}/Biz/Bild.nix {})" - for lib in ${sysdeps[@]} - do + for lib in ${sysdeps[@]}; do flags+=(--packages "$BILD.pkgs.${lib}") flags+=(--packages "$BILD.pkgs.pkg-config") done - for lib in ${rundeps[@]} - do + for lib in ${rundeps[@]}; do flags+=(--packages "$BILD.pkgs.${lib}") done case $exts in |