CI: Make setup script fail on error

Run the `.ci/setup.sh` script with `set -e` to ensure all failures are
fatal.

Fixes #65.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2018-02-26 08:41:25 +00:00
parent 6899dec884
commit 90d7b4dad6

View File

@ -5,6 +5,8 @@
# SPDX-License-Identifier: Apache-2.0
#
set -e
cidir=$(dirname "$0")
bash "${cidir}/static-checks.sh"