Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpolden/echoip.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2019-04-27 11:23:22 +0300
committerMartin Polden <mpolden@mpolden.no>2019-04-27 11:23:22 +0300
commit27fa828efb9034f359f638d29eda1f84aa08cc48 (patch)
tree536ef162027d896b8eb76bdb056ff3a7db069239
parent3a91baab21f999553e2d29b867ec07279a90304a (diff)
Remove unnecessary option
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)