Skip to content

Commit

Permalink
rename continue to ocnfirm
Browse files Browse the repository at this point in the history
Signed-off-by: Pavol Loffay <[email protected]>
  • Loading branch information
pavolloffay committed Oct 26, 2017
1 parent d27fa4b commit 672aae4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ docker-images-only:

.PHONY: docker-push
docker-push:
@while [ -z "$$CONTINUE" ]; do \
read -r -p "Do you really want to push images to repository \"${DOCKER_NAMESPACE}\"? [y/N] " CONTINUE; \
@while [ -z "$$CONFIRM" ]; do \
read -r -p "Do you really want to push images to repository \"${DOCKER_NAMESPACE}\"? [y/N] " CONFIRM; \
done ; \
if [ $$CONTINUE != "y" ] && [ $$CONTINUE != "Y" ]; then \
if [ $$CONFIRM != "y" ] && [ $$CONFIRM != "Y" ]; then \
echo "Exiting." ; exit 1 ; \
fi
for component in agent cassandra-schema collector query ; do \
Expand Down

0 comments on commit 672aae4

Please sign in to comment.