Skip to content

Commit

Permalink
Don't try and validate html docs for undistributed pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
d-torrance committed Sep 6, 2024
1 parent b495432 commit 008c9d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
make validate-html
else
# otherwise, just validate HTML docs for packages that have been updated
PACKAGES=$(git diff --stat origin/development HEAD -- ../../Macaulay2/packages/ | grep -Po "(?<=Macaulay2/packages/)[^/\.]*(?=\.m2|/)" | uniq | xargs)
PACKAGES=$(git diff --stat origin/development HEAD -- ../../Macaulay2/packages/ | grep -Po "(?<=Macaulay2/packages/)[^/\.]*(?=\.m2|/)" | uniq | sed 's/undistributed-packages//g' | xargs)
make validate-html PACKAGES="$PACKAGES"
fi
else
Expand Down

0 comments on commit 008c9d9

Please sign in to comment.