Skip to content

Commit

Permalink
Fix environment variables in the Hera emcsfc modules.
Browse files Browse the repository at this point in the history
Fixes #123.
  • Loading branch information
GeorgeGayno-NOAA committed Mar 15, 2022
1 parent 211d620 commit 2f19a61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modulefiles/modulefile.global_emcsfc_ice_blend.hera.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack-gf
hpc_ver=os.getenv("hpc_ver") or "1.2.0"
load(pathJoin("hpc", hpc_ver))

hpc_ver=os.getenv("hpc_intel_ver") or "18.0.5.274"
hpc_intel_ver=os.getenv("hpc_intel_ver") or "18.0.5.274"
load(pathJoin("hpc-intel", hpc_intel_ver))

w3nco_ver=os.getenv("w3nco_ver") or "2.4.1"
Expand Down
2 changes: 1 addition & 1 deletion modulefiles/modulefile.global_emcsfc_snow2mdl.hera.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack-gf
hpc_ver=os.getenv("hpc_ver") or "1.2.0"
load(pathJoin("hpc", hpc_ver))

hpc_ver=os.getenv("hpc_intel_ver") or "18.0.5.274"
hpc_intel_ver=os.getenv("hpc_intel_ver") or "18.0.5.274"
load(pathJoin("hpc-intel", hpc_intel_ver))

ip_ver=os.getenv("ip_ver") or "3.3.3"
Expand Down

0 comments on commit 2f19a61

Please sign in to comment.