Skip to content
Snippets Groups Projects
Commit 77b77245 authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

importexp: fix missing variable reference in INITIAL/FINAL_DATE initialization

parent 2d312b99
No related branches found
No related tags found
No related merge requests found
......@@ -133,8 +133,8 @@ ${couplingTimeStep:+COUPLER_TIME_STEP = $couplingTimeStep}
###/
EOF
INITIAL_DATE=${initial_date:-start_date}
FINAL_DATE=${final_date:-end_date}
INITIAL_DATE=${initial_date:-$start_date}
FINAL_DATE=${final_date:-$end_date}
$BINDIR/namelist2config -i "$EXPNAME" -a "$atmos_gridID" -A "$atmos_refinement" -o "$ocean_gridID" -O "$ocean_refinement" -I "$INITIAL_DATE" -F "$FINAL_DATE" $LOG_FILE
### i => 'EXP_ID',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment