diff --git a/ci/build.sh b/ci/build.sh index c0c563e40..c8e082b52 100644 --- a/ci/build.sh +++ b/ci/build.sh @@ -8,12 +8,14 @@ # option. This file may not be copied, modified, or distributed # except according to those terms. +set -e + export PATH=$PATH:/home/travis/.cargo/bin; # tests for the second edition cd second-edition -bash spellcheck.sh list || return 1; -mdbook test || return 1; -mdbook build || return 1; -cargo run --bin lfp src || return 1; +bash spellcheck.sh list +mdbook test +mdbook build +cargo run --bin lfp src