Skip to content

Commit

Permalink
update install script to only consider easystack files in easystacks/…
Browse files Browse the repository at this point in the history
…*, which helps to pass tests in CI
  • Loading branch information
boegel committed Nov 24, 2023
1 parent cf6459f commit 1abade7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EESSI-pilot-install-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ fi
pr_diff=$(ls [0-9]*.diff | head -1)

# use PR patch file to determine in which easystack files stuff was added
for easystack_file in $(cat ${pr_diff} | grep '^+++' | cut -f2 -d' ' | sed 's@^[a-z]/@@g' | grep '^eessi.*yml$' | egrep -v 'known-issues|missing'); do
for easystack_file in $(cat ${pr_diff} | grep '^+++' | cut -f2 -d' ' | sed 's@^[a-z]/@@g' | grep '^easystacks/.*yml$' | egrep -v 'known-issues|missing'); do

echo -e "Processing easystack file ${easystack_file}...\n\n"

Expand Down

0 comments on commit 1abade7

Please sign in to comment.