From 5c1d5e9d5673ca5e06ffb52e267bb604e74950d1 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Mon, 6 Nov 2023 13:25:08 -0300 Subject: [PATCH] jsutfile with bash instead of fish. --- justfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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