Only set COMPOSE if it doesnt have a value

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
This commit is contained in:
Milos Gajdos 2023-09-26 14:44:10 +01:00
parent 14361b3ab5
commit 98ffc56af7
No known key found for this signature in database
GPG key ID: 01300E5E6D417439

View file

@ -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) REVISION ?= $(shell git rev-parse HEAD)$(shell if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi)
# default compose command # default compose command
COMPOSE=docker compose COMPOSE ?= docker compose
PKG=github.com/distribution/distribution/v3 PKG=github.com/distribution/distribution/v3