diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 23:46:10 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 23:46:10 -0400 |
commit | b19978a1100bf86086901e1410f2e7ad1358278b (patch) | |
tree | b3861c981b296f2d0194177f805cc280ca2cb287 | |
parent | 534f6f57e930020eb1ad726f4de4e90cf487e584 (diff) |
Fixed todo script to search all development files including Lua, and GLSL scripts
-rwxr-xr-x | todo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ TODO_COUNT=0 rm -f TODOS touch TODOS -for file in src/*.cpp +for file in $(find {src,Shaders,Scripts} -type f -name '*' -print) do echo "########################################" >> TODOS echo $file >> TODOS |