Skip to content

Commit

Permalink
correct a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelTrahanNOAA committed Jun 27, 2024
1 parent b8ba251 commit e536905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/rt_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobid=0
redirect_out_err() {
( set -e -o pipefail ; ( "$@" 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out )
# The above shell redirection copies stdout to "out" and stderr to "err"
# while still sending them to stdout and stderr. It does this without
# 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.
}

function compute_petbounds_and_tasks() {
Expand Down

0 comments on commit e536905

Please sign in to comment.