Skip to content

Commit

Permalink
Merge pull request #395 from NCAR/fix_inflation_propagation
Browse files Browse the repository at this point in the history
Add -f option to ln command for POP scripts
  • Loading branch information
johnsonbk authored Sep 14, 2022
2 parents 477409d + 4c6a710 commit cb9cb51
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ individual files.

The changes are now listed with the most recent at the top.

**September 14 2022 :: Bug-fix for POP shell scripts. Tag: v10.3.1**

- Fixes bug in POP CESM2.1 shell scripts in which inflation files were not
being propagated properly due to link destination already existing.

**August 19 2022 :: Automated setup of new model interfaces. Tag: v10.3.0**

- Automated initial setup of new model interfaces to aid users developing
Expand Down
10 changes: 5 additions & 5 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'Data Assimilation Research Section'

# The full version, including alpha/beta/rc tags
release = '10.3.0'
release = '10.3.1'
master_doc = 'README'

# -- General configuration ---------------------------------------------------
Expand All @@ -46,7 +46,7 @@
'guide/history/hawaii_release.rst',
'guide/history/Guam_release.rst',
'guide/history/Fiji_release.rst',
'guide/Lanai_diffs_from_Kodiak.rst',
'guide/Lanai_diffs_from_Kodiak.rst',
'guide/history/Jamaica_diffs_from_I.rst',
'guide/history/pre_j_release.rst',
'guide/history/PostI_diffs_from_I.rst',
Expand All @@ -57,9 +57,9 @@
'guide/bitwise_considerations.rst',
'guide/rma.rst',
'guide/vertical_conversion.rst',
'guide/boilerplate/boilerplate.rst',
'guide/boilerplate/template.rst'
'guide/boilerplate/boilerplate.rst',
'guide/boilerplate/template.rst'

]


Expand Down
2 changes: 1 addition & 1 deletion models/POP/shell_scripts/cesm2_1/DART_params.csh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ set nonomatch # suppress "rm" warnings if wildcard does not match anythin

set MOVE = 'mv -v'
set COPY = 'cp -v --preserve=timestamps'
set LINK = 'ln -vs'
set LINK = 'ln -vfs'
set REMOVE = 'rm -rf'

exit 0
Expand Down

0 comments on commit cb9cb51

Please sign in to comment.