From cf0d5815befcbb362c72ae528c32bcf41ae61626 Mon Sep 17 00:00:00 2001 From: Adrian Shum Date: Wed, 18 Dec 2024 22:17:54 +0800 Subject: [PATCH] build: cleanup --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 34e02a375..675ca8106 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ build: CGO_CFLAGS_ALLOW=-Xpreprocessor go build -o bin/imagor ./cmd/imagor/main.go test: - go clean -testcache && CGO_CFLAGS_ALLOW=-Xpreprocessor go test -coverprofile=profile.cov $(shell go list ./... | grep -v /examples/) + go clean -testcache && CGO_CFLAGS_ALLOW=-Xpreprocessor go test -coverprofile=profile.cov $(shell go list ./... | grep -v /examples/ | grep -v /cmd/) dev: build ./bin/imagor -debug -imagor-unsafe