Skip to content

Commit

Permalink
ci(test): properly escape parenthesis in grep statement (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher authored Jan 10, 2025
1 parent da0283b commit 24e88eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
cat ./gh-pages/index.html
echo "---"
echo "Checking for tracebacks..."
grep -i -E 'Traceback (most recent call last):' ./gh-pages/index.html && exit 1 || true
grep -i -E 'Traceback \(most recent call last\):' ./gh-pages/index.html && exit 1 || true
- name: Archive gh-pages
if: ${{ github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
Expand Down

0 comments on commit 24e88eb

Please sign in to comment.