Scripts: linecount does not count lines from toolchain/

This commit is contained in:
2023-04-06 20:31:10 +03:00
parent 2a8dc58b6a
commit 4a3bfaff90
+1 -1
View File
@@ -1,3 +1,3 @@
#!/bin/sh #!/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