mirror of https://github.com/ecmwf/eccodes.git
22 lines
421 B
Bash
22 lines
421 B
Bash
#!/bin/bash
|
|
|
|
# No module environment on the Mac
|
|
[[ $(uname) == "Darwin" ]] && return
|
|
|
|
# initialise module environment if it is not
|
|
if [[ ! $(command -v module > /dev/null 2>&1) ]]; then
|
|
. /usr/local/apps/module/init/bash
|
|
fi
|
|
|
|
module unload grib_api
|
|
module unload eccodes
|
|
module unload emos
|
|
module unload fftw
|
|
module unload libemos
|
|
module unload metview
|
|
|
|
module load cmake/3.16.5
|
|
module load aec
|
|
|
|
module switch gnu clang
|