Skip to content

Commit

Permalink
Update logf filenames for postsnd job scripts
Browse files Browse the repository at this point in the history
- Add missing "atm." to logf filenames in scripts for
the bufr sounding job.

Refs NOAA-EMC#1832
  • Loading branch information
KateFriedman-NOAA committed Sep 1, 2023
1 parent 63270da commit 21ce966
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/exgfs_atmos_postsnd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export FINT=$NINT1

ic=0
while [ $ic -lt 1000 ]; do
if [[ ! -f "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.logf${FEND}.${logfm}" ]]; then
if [[ ! -f "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${FEND}.${logfm}" ]]; then
sleep 10
ic=$(expr $ic + 1)
else
Expand Down
2 changes: 1 addition & 1 deletion ush/gfs_bufr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ for (( hr = 10#${FSTART}; hr <= 10#${FEND}; hr = hr + 10#${FINT} )); do
# Make sure all files are available:
ic=0
while (( ic < 1000 )); do
if [[ ! -f "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.logf${hh3}.${logfm}" ]]; then
if [[ ! -f "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${hh3}.${logfm}" ]]; then
sleep 10
ic=$((ic + 1))
else
Expand Down

0 comments on commit 21ce966

Please sign in to comment.