diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-04-23 11:36:55 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-04-23 11:36:55 -0500 |
commit | a1bde56fd2e367cc100b28dffb41ddb9d730f272 (patch) | |
tree | dbf8546c327a0df07456aa8e1b4c6003b143d29c | |
parent | 364253857bd38e6d80df76b7041a1f05d34bce9c (diff) | |
download | mediagoblin-a1bde56fd2e367cc100b28dffb41ddb9d730f272.tar.lz mediagoblin-a1bde56fd2e367cc100b28dffb41ddb9d730f272.tar.xz mediagoblin-a1bde56fd2e367cc100b28dffb41ddb9d730f272.zip |
#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.
-rwxr-xr-x | bootstrap.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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 |