From b19978a1100bf86086901e1410f2e7ad1358278b Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle <drumsetmonkey@gmail.com> Date: Sat, 14 Sep 2019 23:46:10 -0400 Subject: Fixed todo script to search all development files including Lua, and GLSL scripts --- todo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo.sh b/todo.sh index fa43de4..9520eab 100755 --- a/todo.sh +++ b/todo.sh @@ -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 -- cgit v1.2.3