Skip to content
Snippets Groups Projects
Commit 379eb712 authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 31/03/2023: bugfix: profile_mesonh.ihm: correct problem if conf_* file does not exist

Was causing problems with CI on Gitlab (reported by Cedric Gazoppi)
parent 7c32fd2b
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
#MNH_LIC Copyright 1994-2021 CNRS, Meteo-France and Universite Paul Sabatier #MNH_LIC Copyright 1994-2023 CNRS, Meteo-France and Universite Paul Sabatier
#MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence #MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence
#MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt #MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
#MNH_LIC for details. version 1. #MNH_LIC for details. version 1.
...@@ -171,8 +171,7 @@ export VARTTY=\`tty\` ...@@ -171,8 +171,7 @@ export VARTTY=\`tty\`
# #
# Variable depending on \$ARCH # Variable depending on \$ARCH
# #
[ -f \${SRC_MESONH}/conf/conf_\${ARCH} ] && . \${SRC_MESONH}/conf/conf_\${ARCH} [ ! -f \${SRC_MESONH}/conf/conf_\${ARCH} ] || . \${SRC_MESONH}/conf/conf_\${ARCH}
# #
# Optional Environnement variable/Module Env # Optional Environnement variable/Module Env
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment