Skip to content

Commit

Permalink
jsutfile with bash instead of fish.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Nov 6, 2023
1 parent 771d87e commit 5c1d5e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5c1d5e9

Please sign in to comment.