Scipts: linecount doesn't count lines in build/

This commit is contained in:
Bananymous 2023-04-02 04:09:54 +03:00
parent 4c5176f751
commit ccf51cec5c
1 changed files with 1 additions and 1 deletions

View File

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