diff --git a/justfile b/justfile index bc3aadd..6fe083d 100644 --- a/justfile +++ b/justfile @@ -1,17 +1,17 @@ build-all: - #!/usr/bin/env fish - for dir in (find . -maxdepth 1 -type d -name "nip*") + #!/usr/bin/env bash + for dir in $(find . -maxdepth 1 -type d -name "nip*"); do go build "./$dir" - end + done go build ./ go build ./nson go build ./binary test-all: - #!/usr/bin/env fish - for dir in (find . -maxdepth 1 -type d -name "nip*") + #!/usr/bin/env bash + for dir in $(find . -maxdepth 1 -type d -name "nip*"); do go test "./$dir" - end + done go test ./ go test ./nson go test ./binary