Skip to content

Commit 263d3ca

Browse files
committed
fix: forward go runner exit status
1 parent 3323c5a commit 263d3ca

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • src/run/runner/helpers/introspected_golang

src/run/runner/helpers/introspected_golang/go.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@ if [ "$1" = "test" ]; then
4747
debug_log "Full command: RUST_LOG=info $GO_RUNNER $*"
4848

4949
"$GO_RUNNER" "$@"
50+
exit $?
5051
else
5152
debug_log "Detected non-test command ('$1'), routing to standard go binary"
5253
debug_log "Full command: $REAL_GO $*"
5354
"$REAL_GO" "$@"
55+
exit $?
5456
fi

0 commit comments

Comments
 (0)