From 98ffc56af7428651c0e1f7cb79c641c515113ee9 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Tue, 26 Sep 2023 14:44:10 +0100 Subject: [PATCH] Only set COMPOSE if it doesnt have a value Signed-off-by: Milos Gajdos --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 43fd24637..5f0edee48 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ VERSION ?= $(shell git describe --match 'v[0-9]*' --dirty='.m' --always) REVISION ?= $(shell git rev-parse HEAD)$(shell if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi) # default compose command -COMPOSE=docker compose +COMPOSE ?= docker compose PKG=github.com/distribution/distribution/v3