From cb5e0da14bf3dd56ca5e00d2e5e44109820d9a6b Mon Sep 17 00:00:00 2001 From: Naga Ravi Chaitanya Elluri Date: Thu, 19 Oct 2017 13:08:41 -0400 Subject: [PATCH] Replace spaces with tab to avoid Makefile syntax failure --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 92714b7e..7c2b4b02 100644 --- a/Makefile +++ b/Makefile @@ -11,19 +11,19 @@ build: clean # Supressing docker build avoids printing the env variables container: build ifneq ($(and $(http_proxy), $(https_proxy)),) - @echo Starting Docker build, importing both http_proxy and https_proxy env variables - @docker build --build-arg http_proxy=$(http_proxy) --build-arg https_proxy=$(https_proxy) -t kube-monkey:$(TAG) . + @echo Starting Docker build, importing both http_proxy and https_proxy env variables + @docker build --build-arg http_proxy=$(http_proxy) --build-arg https_proxy=$(https_proxy) -t kube-monkey:$(TAG) . else ifdef http_proxy - @echo Starting Docker build, importing http_proxy - @docker build --build-arg http_proxy=$(http_proxy) -t kube-monkey:$(TAG) . + @echo Starting Docker build, importing http_proxy + @docker build --build-arg http_proxy=$(http_proxy) -t kube-monkey:$(TAG) . else ifdef https_proxy - @echo Starting Docker build, importing https_proxy - @docker build --build-arg https_proxy=$(https_proxy) -t kube-monkey:$(TAG) . + @echo Starting Docker build, importing https_proxy + @docker build --build-arg https_proxy=$(https_proxy) -t kube-monkey:$(TAG) . else - @echo no env proxies set, building normally - docker build -t kube-monkey:$(TAG) . + @echo no env proxies set, building normally + docker build -t kube-monkey:$(TAG) . endif endif endif