ci: Use set -e in frontend compiler wrapper scripts.

I doubt the shebang line in the backend script has any effect now,
since the frontend scripts just source it directly.

v2:
* Use "set -e" instead of adding -e to shebang (Eric Engestrom)

v3:
* Apply to the clang wrapper scripts as well (Eric Engestrom)

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22438>
This commit is contained in:
Michel Dänzer
2023-04-12 11:26:07 +02:00
committed by Marge Bot
parent 1915185648
commit 21b190bf44
4 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
#!/bin/sh
set -e
_COMPILER=clang++
. compiler-wrapper.sh