From 4a44236793491001fb1ccb9d9067f941cc8d6361 Mon Sep 17 00:00:00 2001 From: Alexei Dodon Date: Fri, 27 Oct 2023 15:49:09 +0300 Subject: [PATCH] fix: Makefile 'run' target should not depend on running tests Signed-off-by: Alexei Dodon --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0e51a9ad..598e6897b 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