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 8eb99ad commit e5446beCopy full SHA for e5446be
EESSI-install-software.sh
@@ -358,6 +358,12 @@ else
358
new_easystacks=$(echo "${changed_easystacks}" | (grep -v "/rebuilds/" || true))
359
for easystack_file in ${rebuild_easystacks} ${new_easystacks}; do
360
361
+ # make sure that easystack file being picked up is for EESSI version that we're building for...
362
+ echo "${easystack_file}" | grep -q "^easystacks/${EESSI_VERSION}/"
363
+ if [ $? -ne 0 ]; then
364
+ fatal_error "Easystack file ${easystack_file} is not intended for EESSI version ${EESSI_VERSION}, giving up!"
365
+ fi
366
+
367
echo -e "Processing easystack file ${easystack_file}...\n\n"
368
369
# determine version of EasyBuild module to load based on EasyBuild version included in name of easystack file
0 commit comments