Skip to content

Commit

Permalink
Removing eroneous missing file messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryRWinterbottom committed Jun 10, 2024
1 parent acf3aaa commit ea20d5e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/exglobal_diag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,12 @@ EOFdiag
rlist="conv_gps conv_ps conv_pw conv_q conv_sst conv_t conv_uv saphir"
for rtype in $rlist; do
set +e
${CHGRP_CMD} *${rtype}*
${STRICT_ON:-set -e}
for rfile in *"${rtype}"*; do
if [[ -s "${rfile}" ]]; then
${CHGRP_CMD} "${rfile}"
${STRICT_ON:-set -e}
fi
done
done

# If requested, create diagnostic file tarballs
Expand Down

0 comments on commit ea20d5e

Please sign in to comment.