]> code.bitgloo.com Git - clyne/gamedev2.git/commitdiff
Fixed todo script to search all development files including Lua, and GLSL scripts
authorAndy Belle-Isle <drumsetmonkey@gmail.com>
Sun, 15 Sep 2019 03:46:10 +0000 (23:46 -0400)
committerAndy Belle-Isle <drumsetmonkey@gmail.com>
Sun, 15 Sep 2019 03:46:10 +0000 (23:46 -0400)
todo.sh

diff --git a/todo.sh b/todo.sh
index fa43de468ba8e6f6bc0725863499ca2031de9388..9520eaba0684b58f0ca4ed10ac9b662c0bc0e7db 100755 (executable)
--- 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