Skip to content

Commit

Permalink
Add set -e to the test script
Browse files Browse the repository at this point in the history
Currently jobs are failing to fetch the artifacts, but then continue
running and fail later on. It probably makes more sense to stop the
script early if the disk image could not be downloaded.
  • Loading branch information
arichardson committed Apr 9, 2021
1 parent e987fbd commit d7d5878
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/test/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

set -e

SSL_CA_CERT_FILE=/usr/local/share/certs/ca-root-nss.crt

if [ -z "${GIT_COMMIT}" ]; then
Expand Down

0 comments on commit d7d5878

Please sign in to comment.