Skip to content

Commit

Permalink
Merge pull request #26 from zephir-lang/revork-parser
Browse files Browse the repository at this point in the history
Rework grammar
  • Loading branch information
sergeyklay authored Jul 12, 2020
2 parents 94178a3 + 4ec89f7 commit 5e3197e
Show file tree
Hide file tree
Showing 5 changed files with 337 additions and 300 deletions.
2 changes: 1 addition & 1 deletion .ci/check-license.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ EOF

COPYRIGHT_NOTICE=$(echo "$COPYRIGHT_NOTICE" | tr '\r\n' ' ')

NO_LICENSE=$(find . -type f \( -iname '*.kt' -o -iname '*.kts' \) -print0 | \
NO_LICENSE=$(find . -type f \( -iname '*.kt' -o -iname '*.kts' -o -iname '*.bnf' -o -iname '*.flex' \) -print0 | \
xargs -0 pcregrep -L -M "${COPYRIGHT_NOTICE// /\\s}" || true)

if [ -n "$NO_LICENSE" ]; then
Expand Down
Loading

0 comments on commit 5e3197e

Please sign in to comment.