Fix module load issue due to passed empty string
This commit is contained in:
parent
6335b47a65
commit
026e9ba30b
1 changed files with 1 additions and 1 deletions
2
sit
2
sit
|
@ -141,7 +141,7 @@ case $PLATFORM in
|
|||
esac
|
||||
echo "Loading modules: ${COMPILER_MODULE} ${MPI_MODULE}"
|
||||
|
||||
module load "${COMPILER_MODULE}" "${MPI_MODULE}"
|
||||
module load ${COMPILER_MODULE} ${MPI_MODULE}
|
||||
|
||||
if [ ! -z "${COMPILER}" ] ; then
|
||||
# reevaluate compiler version
|
||||
|
|
Loading…
Reference in a new issue