mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-08-27 06:01:24 +02:00
jsutfile with bash instead of fish.
This commit is contained in:
12
justfile
12
justfile
@@ -1,17 +1,17 @@
|
|||||||
build-all:
|
build-all:
|
||||||
#!/usr/bin/env fish
|
#!/usr/bin/env bash
|
||||||
for dir in (find . -maxdepth 1 -type d -name "nip*")
|
for dir in $(find . -maxdepth 1 -type d -name "nip*"); do
|
||||||
go build "./$dir"
|
go build "./$dir"
|
||||||
end
|
done
|
||||||
go build ./
|
go build ./
|
||||||
go build ./nson
|
go build ./nson
|
||||||
go build ./binary
|
go build ./binary
|
||||||
|
|
||||||
test-all:
|
test-all:
|
||||||
#!/usr/bin/env fish
|
#!/usr/bin/env bash
|
||||||
for dir in (find . -maxdepth 1 -type d -name "nip*")
|
for dir in $(find . -maxdepth 1 -type d -name "nip*"); do
|
||||||
go test "./$dir"
|
go test "./$dir"
|
||||||
end
|
done
|
||||||
go test ./
|
go test ./
|
||||||
go test ./nson
|
go test ./nson
|
||||||
go test ./binary
|
go test ./binary
|
||||||
|
Reference in New Issue
Block a user