aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-26 11:45:18 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-26 11:45:18 -0400
commit5cceca5ec696e6626cea0ec07f9db1b28bb3b875 (patch)
treeb8fe1a32fe7d1c8b3e007371608168308c077c36
parent71a7b3f2654778254c93c58e8ca639de7db80521 (diff)
fixed todos.sh messing with lua commentsv0.2-alpha
-rwxr-xr-xtodo.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/todo.sh b/todo.sh
index 9520eab..1215ede 100755
--- a/todo.sh
+++ b/todo.sh
@@ -12,7 +12,7 @@ do
echo "########################################" >> TODOS
echo $file >> TODOS
echo "========================================" >> TODOS
- grep -n -B 5 -A 5 "TODO" $file | sed s/--/========================================/g >> TODOS
+ grep -n -B 5 -A 5 "TODO" $file | sed s/^--/========================================/g >> TODOS
TODO_COUNT=$((TODO_COUNT+$(grep -c "TODO" $file)))
done