From 90d06f94de5d93a54e3ada5b0bd64455ff013fd0 Mon Sep 17 00:00:00 2001 From: Sitsofe Wheeler Date: Sun, 26 Jul 2020 06:51:16 +0100 Subject: [PATCH] travis: make CI install script bail out on first error This avoids the issue where we carry on when we can't find a requested package to install. Signed-off-by: Sitsofe Wheeler --- ci/travis-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/travis-install.sh b/ci/travis-install.sh index 36661ddd..f76d5d40 100755 --- a/ci/travis-install.sh +++ b/ci/travis-install.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -e CI_TARGET_ARCH="${BUILD_ARCH:-$TRAVIS_CPU_ARCH}" case "$TRAVIS_OS_NAME" in -- 2.25.1