summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-05-08 22:28:01 -0400
committersiddharth <s@ricketyspace.net>2022-05-08 22:28:01 -0400
commitcd3ecb1560871efc7d69a9503682e7baaf48b1e2 (patch)
tree9b527fe70c5e834b5cef85eaf238b381d6ae680b /Makefile
parent4ef093d212abb22fbc87a6f9b8a06f5224677658 (diff)
Makefile: update fmt and test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b4a5b41..740b9fd 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,8 @@ peach: fmt
go build
fmt:
- go fmt ${MOD} ${MOD}/http/client
+ go fmt ${MOD} ${MOD}/client ${MOD}/nws
test:
- go test -v ${MOD}/http/client
+ go test ${MOD}/client ${MOD}/nws ${ARGS}
.PHONY: test