Skip to content

Commit e536905

Browse files
correct a comment
1 parent b8ba251 commit e536905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/rt_utils.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobid=0
1717
redirect_out_err() {
1818
( set -e -o pipefail ; ( "$@" 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out )
1919
# 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.
20+
# while still sending them to stdout and stderr. It ensures the entire
21+
# redirect_out_err command will return non-zero if "$@" or tee return non-zero.
2222
}
2323

2424
function compute_petbounds_and_tasks() {

0 commit comments

Comments
 (0)