diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-11-24 08:14:17 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-11-24 16:58:55 -0800 |
commit | ad4ea65493afb7f54610b7ddaa28f526f791554f (patch) | |
tree | b7a3aab99d97636c8a597dfc97639c285e9b6661 /scripts/linux/travisbuild.sh | |
parent | 82a1757e09540acec6ee5f6e97f5cdb7c216bbbf (diff) | |
download | subsurface-ad4ea65493afb7f54610b7ddaa28f526f791554f.tar.gz |
Travis: try to make sure failing builds fail
In some situations Travis CI doesn't seem to notice that a build failed and
give us a green check mark even though the build didn't succeed.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/linux/travisbuild.sh')
-rw-r--r-- | scripts/linux/travisbuild.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/linux/travisbuild.sh b/scripts/linux/travisbuild.sh index 244320d8d..3e48544f6 100644 --- a/scripts/linux/travisbuild.sh +++ b/scripts/linux/travisbuild.sh @@ -1,6 +1,7 @@ #!/bin/bash set -x +set -e # this gets executed by Travis when building an AppImage for Linux # it gets started from inside the subsurface directory |