Skip to content

Commit

Permalink
Fix ocean anl path in staging (#1544)
Browse files Browse the repository at this point in the history
The path for ocean analysis files was not properly updated after
analysis was moved out of model_data into its own directory.
  • Loading branch information
WalterKolczynski-NOAA committed Apr 28, 2023
1 parent 8506ec6 commit ff37168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/setup_expt.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def fill_COMROT_cycled(host, inputs):
dst_med_dir = '' # no mediator files for a "cold start"
do_med = False
dst_ocn_rst_dir = os.path.join('model_data', 'ocean', 'restart')
dst_ocn_anl_dir = os.path.join('model_data', 'ocean', 'analysis')
dst_ocn_anl_dir = os.path.join('analysis', 'ocean')
dst_ice_dir = os.path.join('model_data', 'ice', 'restart')
dst_atm_anl_dir = os.path.join('analysis', 'atmos')

Expand Down

0 comments on commit ff37168

Please sign in to comment.