aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-14 23:46:10 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-14 23:46:10 -0400
commitb19978a1100bf86086901e1410f2e7ad1358278b (patch)
treeb3861c981b296f2d0194177f805cc280ca2cb287
parent534f6f57e930020eb1ad726f4de4e90cf487e584 (diff)
Fixed todo script to search all development files including Lua, and GLSL scripts
-rwxr-xr-xtodo.sh2
1 files changed, 1 insertions, 1 deletions
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