Skip to content

Commit

Permalink
debugged output for gocart
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaMeixner-NOAA committed Oct 17, 2023
1 parent 2ed31de commit a34e88a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ush/forecast_postdet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,13 @@ GOCART_out() {

# Copy gocart.inst_aod after the forecast is run (and successfull)
# TO DO: this should be linked but there were issues where gocart was crashing if it was linked
${NCP} "${DATA}/gocart.inst_aod.*" "${COM_CHEM_HISTORY}/"
#${NCP} "${DATA}/gocart.inst_aod.*" "${COM_CHEM_HISTORY}/"
if (( $( ls -1 "${DATA}/gocart.inst_aod."* 2> /dev/null | wc -l) > 0 )); then
for file in $(ls "${DATA}/gocart.inst_aod."*) ; do
${NCP} "${file}" "${COM_CHEM_HISTORY}/"
done
fi


}

0 comments on commit a34e88a

Please sign in to comment.