Commit 78828543 authored by Peter Parente's avatar Peter Parente

Fix exit logic on retry

parent ebc5b834
...@@ -71,8 +71,7 @@ retry/%: ...@@ -71,8 +71,7 @@ retry/%:
if [[ $$? == 0 ]]; then exit 0; fi; \ if [[ $$? == 0 ]]; then exit 0; fi; \
echo "Sleeping for $$((i * 60))s before retry" ; \ echo "Sleeping for $$((i * 60))s before retry" ; \
sleep $$((i * 60)) ; \ sleep $$((i * 60)) ; \
done done ; exit 1
exit 1
tag/%: ##tag the latest stack image with the HEAD git SHA tag/%: ##tag the latest stack image with the HEAD git SHA
docker tag -f $(OWNER)/$(notdir $@):latest $(OWNER)/$(notdir $@):$(GIT_MASTER_HEAD_SHA) docker tag -f $(OWNER)/$(notdir $@):latest $(OWNER)/$(notdir $@):$(GIT_MASTER_HEAD_SHA)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment