From 27fa828efb9034f359f638d29eda1f84aa08cc48 Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Sat, 27 Apr 2019 10:23:22 +0200 Subject: [PATCH] Remove unnecessary option --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7d28655..d1da7df 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ docker-login: docker-test: $(eval CONTAINER=$(shell docker run --rm --detach --publish-all $(DOCKER_IMAGE))) $(eval DOCKER_PORT=$(shell docker port $(CONTAINER) | cut -d ":" -f 2)) - curl -qfsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER) + curl -fsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER) docker-push: docker-test docker-login docker push $(DOCKER_IMAGE)