From f34af3cb3f30eb0e45593e24b80878f1e9e4c7fa Mon Sep 17 00:00:00 2001 From: Alexei Dodon Date: Fri, 27 Oct 2023 20:40:12 +0300 Subject: [PATCH] fix: Makefile 'run' target should not depend on running tests (#1969) Signed-off-by: Alexei Dodon --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0e51a9a..598e6897 100644 --- a/Makefile +++ b/Makefile @@ -308,7 +308,7 @@ clean: rm -rf pkg/extensions/build .PHONY: run -run: binary test +run: binary ./bin/zot-$(OS)-$(ARCH) serve examples/config-test.json .PHONY: verify-config