Skip to content

Commit 5ca5a76

Browse files
author
Caspar van Leeuwen
committed
Make all shared_fs_path env vars lower case
1 parent 28abaf6 commit 5ca5a76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test_suite.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ if [ -z "$RFM_CONFIG_FILES" ]; then
139139
if [ -z "${shared_fs_path}" ]; then
140140
fatal_error "Environment variable 'shared_fs_path' was expected, but was not set"
141141
fi
142-
# Try to find a config file at $SHARED_FS_PATH/reframe_config.py
143-
export RFM_CONFIG_FILES="${SHARED_FS_PATH}/reframe_config.py"
142+
# Try to find a config file at $shared_fs_path/reframe_config.py
143+
export RFM_CONFIG_FILES="${shared_fs_path}/reframe_config.py"
144144
if [ ! -f "${RFM_CONFIG_FILES}" ]; then
145145
# If we haven't found the ReFrame config, print an informative error
146-
err_msg="Please put a ReFrame configuration file in ${SHARED_FS_PATH}/reframe_config.py"
146+
err_msg="Please put a ReFrame configuration file in ${shared_fs_path}/reframe_config.py"
147147
err_msg="${err_msg} or set RFM_CONFIG_FILES in the environment of this bot instance to point to a valid"
148148
err_msg="${err_msg} ReFrame configuration file that matches the bot config."
149149
err_msg="${err_msg} For more information, see https://gitlab.com/eessi/support/-/issues/114#note_2293660921"

0 commit comments

Comments
 (0)