aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-05-14 18:26:01 -0400
committerSam Anthony <sam@samanthony.xyz>2026-05-14 18:26:01 -0400
commit7ffc98c007601921db0677fc07c9779f71bb3499 (patch)
tree84ef660183e9f89cad6ff3ac5f14a338aac86403 /Makefile
parent28a5aa8c8e7a61dbf06a2cd72ea1bfdee8e67ba6 (diff)
downloadlulu-7ffc98c007601921db0677fc07c9779f71bb3499.zip
cli: test validate-interior
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index da99711..624e561 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ all: build lulu
build: ${SRC} ${GEN}
go build
-testcli: lulu cmd/lulu/test $(wildcard cmd/lulu/tests/*) $(wildcard cmd/lulu/testdata/*)
+testcli: lulu
$(eval PATH=$(shell pwd):${PATH})
cd cmd/lulu && ./test
@@ -23,6 +23,6 @@ spec.yml:
curl -L -o $@ 'https://api.lulu.com/api-docs/openapi-specs/openapi_public.yml'
clean:
- cat .gitignore | xargs -I{} sh -c "rm -rf ./{}"
+ rm -rf ${GEN} lulu .gen cmd/lulu/testerr cmd/lulu/testout
.PHONY: testcli