Fix docker buildx check in Makefile
Add a missing tab or we will hit it in all targets.
This commit is contained in:
parent
f9182c0f5c
commit
c10d4f5381
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -268,7 +268,7 @@ check-go-version:
|
||||||
init-docker-buildx:
|
init-docker-buildx:
|
||||||
ifeq ($(DIND_TASKS),)
|
ifeq ($(DIND_TASKS),)
|
||||||
ifneq ($(shell docker buildx 2>&1 >/dev/null; echo $?),)
|
ifneq ($(shell docker buildx 2>&1 >/dev/null; echo $?),)
|
||||||
$(error "buildx not vailable. Docker 19.03 or higher is required")
|
$(error "buildx not vailable. Docker 19.03 or higher is required")
|
||||||
endif
|
endif
|
||||||
docker run --rm --privileged docker/binfmt:66f9012c56a8316f9244ffd7622d7c21c1f6f28d
|
docker run --rm --privileged docker/binfmt:66f9012c56a8316f9244ffd7622d7c21c1f6f28d
|
||||||
docker buildx create --name ingress-nginx --use || true
|
docker buildx create --name ingress-nginx --use || true
|
||||||
|
|
Loading…
Reference in a new issue