diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:45:18 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:45:18 -0400 |
commit | 5cceca5ec696e6626cea0ec07f9db1b28bb3b875 (patch) | |
tree | b8fe1a32fe7d1c8b3e007371608168308c077c36 | |
parent | 71a7b3f2654778254c93c58e8ca639de7db80521 (diff) |
fixed todos.sh messing with lua commentsv0.2-alpha
-rwxr-xr-x | todo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |