From 9e234ea2631167a81714300910f68c412afa2eb4 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Tue, 21 May 2024 10:16:27 -0600 Subject: [PATCH] always rebuild and run ginkgo in makefile --- Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 93eb2e515..cb099aff9 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,10 @@ # default task since it's first .PHONY: all -all: install vet test - -.PHONY: install -install: - which ginkgo 2>&1 >/dev/null || go install ./... +all: vet test .PHONY: test test: - ginkgo -r -p + go run github.com/onsi/ginkgo/v2/ginkgo -r -p .PHONY: vet vet: