Skip to content

Commit

Permalink
Check if easyconfigs were detected
Browse files Browse the repository at this point in the history
  • Loading branch information
Neves-P committed Mar 2, 2024
1 parent cfa4225 commit 8b9830e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bot/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@ else
for easystack_file in ${changed_easystacks}; do

echo -e "Processing easystack file ${easystack_file}...\n\n"
easyconfigs=$(grep '^+.*.eb$' 19.diff | awk -v ORS=' ' '{print $3}')
easyconfigs=$(grep '^+.*.eb$' ${pr_diff} | awk -v ORS=' ' '{print $3}')

echo_green "All set, let's start installing some software with EasyBuild in ${EASYBUILD_INSTALLPATH}..."

if [ -z ${easyconfigs+x}]; then
if [ ! -z ${easyconfigs} ]; then
echo_green "Successfully read easyconfig files\n"
echo "Building following easyconfigs: ${easyconfigs}"

Expand Down

0 comments on commit 8b9830e

Please sign in to comment.