From 57c9dbd056d607fa0be2c5e1eb4628900ef85c2c Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Fri, 12 Apr 2019 00:06:20 +0300 Subject: [PATCH] chore: quote docker creds (#122) Signed-off-by: Andrey Smirnov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e54917d..3b10b6e6 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ image: build .PHONY: login login: - @docker login --username $(DOCKER_USERNAME) --password $(DOCKER_PASSWORD) + @docker login --username "$(DOCKER_USERNAME)" --password "$(DOCKER_PASSWORD)" push: image @docker tag autonomy/conform:$(TAG) autonomy/conform:latest