We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd1030 commit 47f2695Copy full SHA for 47f2695
1 file changed
check.sh
@@ -213,7 +213,8 @@ function cmd_itest() {
213
exit 2
214
})
215
216
- local exitCode=$?
+ # PIPESTATUS[0] is Godot's exit code; $? would only give tee's exit code (masking crashes).
217
+ local exitCode=${PIPESTATUS[0]}
218
219
# Check for unrecoverable errors in log.
220
if grep -qE "SCRIPT ERROR:|Can't open dynamic library" "$logFile"; then
0 commit comments