Skip to content

Commit

Permalink
Linter corrections.
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywinterbottom-wxdev committed Feb 16, 2024
1 parent eb2ed53 commit ed25bbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ush/load_ufsda_modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ elif [[ "${MACHINE_ID}" == "hera" ]] ; then
# We are on NOAA Hera
module load "${MODS}/hera"
# set NETCDF variable based on ncdump location
NETCDF=$( which ncdump )
NETCDF=$( command -v ncdump)
export NETCDF
elif [[ "${MACHINE_ID}" == "orion" ]] ; then
# We are on MSU Orion
module load "${MODS}/orion"
# set NETCDF variable based on ncdump location
ncdump=$( which ncdump )
ncdump=$( command -v ncdump)
NETCDF=$( echo "${ncdump}" | cut -d " " -f 3 )
export NETCDF
elif [[ "${MACHINE_ID}" == "hercules" ]] ; then
# We are on MSU Hercules
module load "${MODS}/hercules"
# set NETCDF variable based on ncdump location
ncdump=$( which ncdump )
ncdump=$( command -v ncdump )
NETCDF=$( echo "${ncdump}" | cut -d " " -f 3 )
export NETCDF
elif [[ "${MACHINE_ID}" == "gaea" ]] ; then
Expand Down

0 comments on commit ed25bbd

Please sign in to comment.