Skip to content

Commit

Permalink
fix?: commonly ignored files
Browse files Browse the repository at this point in the history
  • Loading branch information
erikwrede committed Oct 17, 2024
1 parent 3c238db commit 1190b00
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@ jobs:
cat gitignore/Node.gitignore gitignore/Global/*.gitignore > all.gitignore
IGNORED_FILES_UNPROCESSED=$(git ls-files --cached --ignored --exclude-from=all.gitignore)
echo "IGNORED_FILES before grep: $IGNORED_FILES_UNPROCESSED"
IGNORED_FILES=$(grep -F "patches/@codspeed+core+3.1.0.patch" <<< "$IGNORED_FILES_UNPROCESSED")
echo "IGNORED_FILES after grep: $IGNORED_FILES"
IGNORED_FILES=$(grep -F "patches/@codspeed+core+3.1.0.patch" <<< "$IGNORED_FILES_UNPROCESSED" || true)
echo "IGNORED_FILES: $IGNORED_FILES"
if [[ "$IGNORED_FILES" != "" ]]; then
Expand Down

0 comments on commit 1190b00

Please sign in to comment.