Skip to content

Commit

Permalink
Fix minor syntax error in link script
Browse files Browse the repository at this point in the history
The last merge from develop introduced a minor syntax error in the
link script due to a bad conflict resolution. The issue is now
corrected.

Refs: NOAA-EMC#966
  • Loading branch information
WalterKolczynski-NOAA committed Sep 24, 2022
1 parent 423d0ea commit 7cf22f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorc/link_workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ fi
if [ -d "${script_dir}/gsi_monitor.fd" ]; then

cd "${top_dir}/fix" || exit 1
[[ ! -d gdas ]] && mkdir -p gdas || exit 1
[[ ! -d gdas ]] && ( mkdir -p gdas || exit 1 )
cd gdas || exit 1
${LINK} "${script_dir}/gsi_monitor.fd/src/Minimization_Monitor/nwprod/gdas/fix/gdas_minmon_cost.txt" .
${LINK} "${script_dir}/gsi_monitor.fd/src/Minimization_Monitor/nwprod/gdas/fix/gdas_minmon_gnorm.txt " .
Expand Down

0 comments on commit 7cf22f6

Please sign in to comment.