diff options
author | Ben Sima <ben@bsima.me> | 2024-04-10 19:56:46 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-04-10 19:56:46 -0400 |
commit | 2c09c7f73e2fc770f42b5dd2588aa9634b4e7c6e (patch) | |
tree | a6c49dddb7b1735a0f8de2a9a5f4efb605f16f36 /Biz/Ide | |
parent | 051973aba8953ebde51eb1436fb3994e7ae699dc (diff) |
Switch from black to ruff format
Ruff is faster and if it supports everything that black supports than why not? I
did have to pull in a more recent version from unstable, but that's easy to do
now. And I decided to just go ahead and configure ruff by turning on almost all
checks, which meant I had to fix a whole bunch of things, but I did that and
everything is okay now.
Diffstat (limited to 'Biz/Ide')
-rwxr-xr-x | Biz/Ide/repl.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Biz/Ide/repl.sh b/Biz/Ide/repl.sh index 78fe1eb..8b28dcd 100755 --- a/Biz/Ide/repl.sh +++ b/Biz/Ide/repl.sh @@ -33,16 +33,16 @@ fi packageSet=$(jq --raw-output '.[].packageSet' <<< "$json") module=$(jq --raw-output '.[].mainModule' <<< "$json") BILD="(import ${CODEROOT:?}/Biz/Bild.nix {})" - declare -a flags=(--packages "$BILD.pkgs.pkg-config") + declare -a flags=(--packages "$BILD.bild.pkgs.pkg-config") for lib in "${sysdeps[@]}"; do - flags+=(--packages "$BILD.pkgs.${lib}") + flags+=(--packages "$BILD.bild.pkgs.${lib}") done for lib in "${rundeps[@]}"; do - flags+=(--packages "$BILD.pkgs.${lib}") + flags+=(--packages "$BILD.bild.pkgs.${lib}") done case $exts in C) - flags+=(--packages "$BILD.pkgs.gcc") + flags+=(--packages "$BILD.bild.pkgs.gcc") command="bash" ;; Hs) |