diff options
| author | 2025-01-05 17:45:51 -0500 | |
|---|---|---|
| committer | 2025-01-05 17:45:51 -0500 | |
| commit | 9362f2223038b59954c8402963932b4eb77030be (patch) | |
| tree | bc72959568463c41ddbb941c4f234fd8131418c8 /scripts | |
| parent | 99abe2b506eaaec4535c5bf9a7310437d7195bc1 (diff) | |
| download | camu-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-x | scripts/line_count.sh | 3 |
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' {} + |