Skip to content

Commit

Permalink
try different grep syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Jun 3, 2022
1 parent da6f8db commit dfce0d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: 'Run sanitycheck'
run: |
echo "Check for trailing whitespace"
grep -nr --include \*.md '\s$' . ; test $? -eq 1
! grep -nr --include \*.md '\s$' .
echo "Check for tabs"
grep -nrP --include \*.md '\t' . ; test $? -eq 1
! grep -nrP --include \*.md '\t' .
git clone https://github.com/dlang-tour/core ../tour
mkdir -p ../tour/public/content/lang
mv * ../tour/public/content/lang
Expand Down

0 comments on commit dfce0d7

Please sign in to comment.