jsutfile with bash instead of fish.

This commit is contained in:
fiatjaf
2023-11-06 13:25:08 -03:00
parent 771d87e1e5
commit 5c1d5e9d56

View File

@@ -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