diff options
| author | 2026-08-26 15:08:16 -0400 | |
|---|---|---|
| committer | 2026-08-26 15:08:16 -0400 | |
| commit | 6094c907b26e21f13373bae6bf3306dbae40af3c (patch) | |
| tree | 981864ddb1ab9749d3e10a81edc782311826e101 /scripts/line_count.sh | |
| parent | da9bddc70ff8544f3294b880d719c4605e87ad97 (diff) | |
| download | camu-6094c907b26e21f13373bae6bf3306dbae40af3c.tar.gz camu-6094c907b26e21f13373bae6bf3306dbae40af3c.tar.bz2 camu-6094c907b26e21f13373bae6bf3306dbae40af3c.zip | |
Update deps, small changes and cleanup
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts/line_count.sh')
| -rwxr-xr-x | scripts/line_count.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/line_count.sh b/scripts/line_count.sh index 215c7d0..83b89bb 100755 --- a/scripts/line_count.sh +++ b/scripts/line_count.sh @@ -2,15 +2,15 @@ export LC_ALL="C" find ./src ./scripts ./env -type f \ -not -path "*__pycache__*" \ - -not -path "./env/msvc-root/*" \ -not -path "./env/nixpkgs-patches/*" \ + -not -path "./src/fruits/cmv/icon.*" \ -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/py/.mypy_cache/*" \ -not -path "./src/portal/py/tests/*" \ -not -path "./src/portal/vendor/*" \ + -not -path "./src/render/shaders/*.glsl" \ -exec sloccount {} + #-exec sed -i 's///g' {} + |