We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea735cf commit 698d6a5Copy full SHA for 698d6a5
.github/workflows/scripts/test_init_scripts.sh
@@ -1,7 +1,11 @@
1
#!/bin/bash
2
-EESSI_VERSION="2023.06"
3
export LMOD_PAGER=cat
4
+if [ -z ${EESSI_VERSION} ] || [ ! -d /cvmfs/software.eessi.io/versions/${EESSI_VERSION} ]; then
5
+ echo "\$EESSI_VERSION has to be set to a valid EESSI version."
6
+ exit 1
7
+fi
8
+
9
# initialize assert framework
10
if [ ! -d assert.sh ]; then
11
echo "assert.sh not cloned."
0 commit comments