From 4683e83287ee38afab1a504dc5fd7d68c611c860 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Thu, 1 Oct 2020 12:19:20 +0200 Subject: [PATCH] Add set -e to update-docs.sh This should prevent accidentally comitting docs in master --- update-docs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update-docs.sh b/update-docs.sh index fe72cce7..4429c055 100644 --- a/update-docs.sh +++ b/update-docs.sh @@ -1,5 +1,6 @@ #!/bin/bash +set -e python setup.py gen docs rm -rf /tmp/docs mv docs/ /tmp/docs