summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-12-09 15:30:13 -0500
committerAndrew Opalach <andrew@akon.city> 2024-12-09 15:30:13 -0500
commit907766e7d59af88d125aef603fa9c61f67abd328 (patch)
tree2914e8c06327d77d298f8aa9dfe1550d6ac061c9 /scripts
parentefb4728e02a882d4b62b57f6fd572a9e053ae609 (diff)
downloadcamu-907766e7d59af88d125aef603fa9c61f67abd328.tar.gz
camu-907766e7d59af88d125aef603fa9c61f67abd328.tar.bz2
camu-907766e7d59af88d125aef603fa9c61f67abd328.zip
Don't queue remove_sink, cleanup input simulator
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/line_count.sh6
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 {} +