From e1062f8999c9641ce4de5836f7ac4701d20c464a Mon Sep 17 00:00:00 2001 From: Tushar Makkar Date: Fri, 4 Nov 2016 11:23:12 +0530 Subject: [PATCH] Removing exit 1 --- update_documentation.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/update_documentation.sh b/update_documentation.sh index 79c09f7..4a81834 100644 --- a/update_documentation.sh +++ b/update_documentation.sh @@ -48,11 +48,9 @@ git push ${PUSH_URL} && \ echo "Merge complete!" || \ echo "Error Occurred. Merge failed" -pip install -r requirements.txt && sphinx-apidoc -o docs -f voluptuous || -echo "Sphinx not able to generate RST" && exit 1 - +pip install -r requirements.txt && sphinx-apidoc -o docs -f voluptuous && cd docs && make html || -echo "Sphinx not able to generate HTML" && exit 1 +echo "Sphinx not able to generate HTML" git status && git add . && git commit -m "Auto updating documentation from $CURRENT_BRANCH" &&