diff options
author | Jonas Ã…dahl <jadahl@gmail.com> | 2021-02-13 18:47:54 +0100 |
---|---|---|
committer | Marge Bot <marge-bot@gnome.org> | 2021-03-12 15:09:45 +0000 |
commit | e52fdad3f4105f69f87679b8934e136e1fe5e731 (patch) | |
tree | 3fbaad26cbe82f5999978f7c92f141968b03d2ee /.gitlab-ci | |
parent | 2be09ce0452ecbca65d040e26b6fa002b3c6acce (diff) | |
download | mutter-e52fdad3f4105f69f87679b8934e136e1fe5e731.tar.gz |
ci/run-tests: Call set -e instead of set +e
We want to fail the script if anything fails, not the other way around.
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1698>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x | .gitlab-ci/run-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/run-tests.sh b/.gitlab-ci/run-tests.sh index 76b67934f..34c66b992 100755 --- a/.gitlab-ci/run-tests.sh +++ b/.gitlab-ci/run-tests.sh @@ -1,6 +1,6 @@ #!/usr/bin/bash -set +e +set -e dconf update glib-compile-schemas $GSETTINGS_SCHEMA_DIR |