diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/line_count.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/line_count.sh b/scripts/line_count.sh index fdd6278..281f765 100755 --- a/scripts/line_count.sh +++ b/scripts/line_count.sh @@ -1,10 +1,10 @@ #! /usr/bin/env sh find ./src -type f \ + -not -path "*__pycache__*" \ + -not -path "./src/fruits/droid/*" \ -not -path "./src/portal/cpy/portal.c" \ -not -path "./src/portal/cpy/portal.h" \ -not -path "./src/portal/patches/*" \ - -not -path "./src/portal/tests/*" \ + -not -path "./src/portal/py/tests/*" \ -not -path "./src/portal/vendor/*" \ - -not -path "./src/fruits/droid/*" \ - -not -path "*__pycache__*" \ -exec wc -l {} + |