We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ba251 commit e536905Copy full SHA for e536905
tests/rt_utils.sh
@@ -17,8 +17,8 @@ jobid=0
17
redirect_out_err() {
18
( set -e -o pipefail ; ( "$@" 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out )
19
# The above shell redirection copies stdout to "out" and stderr to "err"
20
- # while still sending them to stdout and stderr. It does this without
21
- # relying on bash-specific extensions or non-standard OS features.
+ # while still sending them to stdout and stderr. It ensures the entire
+ # redirect_out_err command will return non-zero if "$@" or tee return non-zero.
22
}
23
24
function compute_petbounds_and_tasks() {
0 commit comments