Fix docker buildx check in Makefile

Add a missing tab or we will hit it in all targets.
This commit is contained in:
Archangel_SDY 2020-02-03 20:17:26 +08:00
parent f9182c0f5c
commit c10d4f5381

View file

@ -268,7 +268,7 @@ check-go-version:
init-docker-buildx:
ifeq ($(DIND_TASKS),)
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
docker run --rm --privileged docker/binfmt:66f9012c56a8316f9244ffd7622d7c21c1f6f28d
docker buildx create --name ingress-nginx --use || true