Scripts: linecount does not count lines from toolchain/

This commit is contained in:
Bananymous 2023-04-06 12:37:11 +03:00
parent f70cd3ea77
commit 91c8f9a596
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
find . | grep -v 'build' | grep -E '\.(cpp|h|S)$' | xargs wc -l | sort -n
find . | grep -vE '(build|toolchain)' | grep -E '\.(cpp|h|S)$' | xargs wc -l | sort -n