summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-01-05 17:45:51 -0500
committerAndrew Opalach <andrew@akon.city> 2025-01-05 17:45:51 -0500
commit9362f2223038b59954c8402963932b4eb77030be (patch)
treebc72959568463c41ddbb941c4f234fd8131418c8 /scripts
parent99abe2b506eaaec4535c5bf9a7310437d7195bc1 (diff)
downloadcamu-9362f2223038b59954c8402963932b4eb77030be.tar.gz
camu-9362f2223038b59954c8402963932b4eb77030be.tar.bz2
camu-9362f2223038b59954c8402963932b4eb77030be.zip
Fix sink local pause
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/line_count.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/line_count.sh b/scripts/line_count.sh
index 9da3e7e..e7abdf4 100755
--- a/scripts/line_count.sh
+++ b/scripts/line_count.sh
@@ -1,4 +1,5 @@
#! /usr/bin/env sh
+export LC_ALL="C"
find ./src -type f \
-not -path "*__pycache__*" \
-not -path "./src/fruits/droid/*" \
@@ -7,6 +8,6 @@ find ./src -type f \
-not -path "./src/portal/patches/*" \
-not -path "./src/portal/py/tests/*" \
-not -path "./src/portal/vendor/*" \
- -exec wc -l {} +
+ -exec sloccount {} +
#-exec sed -i 's///g' {} +