From a1bde56fd2e367cc100b28dffb41ddb9d730f272 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 23 Apr 2015 11:36:55 -0500 Subject: [PATCH] #5074: Added set -e to bootstrap.sh This should make it so that if any of the commands in the script fail, the whole script fails. --- bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index 05c84d46..bc866703 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,5 +1,7 @@ #!/bin/bash +set -e + aclocal -I m4 --install autoreconf -fvi -- 2.11.4.GIT