Skip to content

Commit

Permalink
Relax regex for looking for easystacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Neves-P authored Oct 2, 2024
1 parent bded640 commit 0fad00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EESSI-install-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ if command_exists "nvidia-smi"; then
fi

# use PR patch file to determine in which easystack files stuff was added
changed_easystacks=$(cat ${pr_diff} | grep '^+++' | cut -f2 -d' ' | sed 's@^[a-z]/@@g' | grep '^easystacks/.*yml$' | egrep -v 'known-issues|missing')
changed_easystacks=$(cat ${pr_diff} | grep '^+++' | cut -f2 -d' ' | sed 's@^[a-z]/@@g' | grep 'easystacks/.*yml$' | egrep -v 'known-issues|missing')
if [ -z "${changed_easystacks}" ]; then
echo "No missing installations, party time!" # Ensure the bot report success, as there was nothing to be build here
else
Expand Down

0 comments on commit 0fad00c

Please sign in to comment.