From: Andy Belle-Isle Date: Sun, 15 Sep 2019 03:46:10 +0000 (-0400) Subject: Fixed todo script to search all development files including Lua, and GLSL scripts X-Git-Tag: v0.2-alpha~10 X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=b19978a1100bf86086901e1410f2e7ad1358278b;p=clyne%2Fgamedev2.git Fixed todo script to search all development files including Lua, and GLSL scripts --- 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