Skip to content

Commit

Permalink
Added S4, cleaned up Jet in detect-machine.sh (#28)
Browse files Browse the repository at this point in the history
The module use statement in Jet points to a non-existent location.
  • Loading branch information
DavidHuber-NOAA authored Oct 4, 2021
1 parent 294dbad commit cc2c926
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sorc/machine-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ if [[ -d /lfs3 ]] ; then
fi
target=jet
module purge
module use /mnt/lfs3/projects/hfv3gfs/nwprod/lib/modulefiles
elif [[ -d /scratch1 ]] ; then
# We are on NOAA Hera
if ( ! eval module help > /dev/null 2>&1 ) ; then
Expand Down Expand Up @@ -128,6 +127,10 @@ elif [[ -d /lustre && -d /ncrc ]] ; then
fi
target=gaea
module purge
elif [[ -d /data/prod ]] ; then
# We are on SSEC S4
target=s4
module purge
else
echo WARNING: UNKNOWN PLATFORM 1>&2
fi
Expand Down

0 comments on commit cc2c926

Please sign in to comment.