X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=DOCS%2Ftodo-builder.sh;h=821aa6801edbab69a2d128fad60cc0731d4f2ea4;hp=52c4164ab986beab0388e092b31346c700ef53b2;hb=a5d4f2529bcfab3bee7816f824e73affcd3c473b;hpb=92109450ab35c61ef70767cf65502af5a279dc8b diff --git a/DOCS/todo-builder.sh b/DOCS/todo-builder.sh index 52c4164ab9..821aa6801e 100644 --- a/DOCS/todo-builder.sh +++ b/DOCS/todo-builder.sh @@ -11,6 +11,8 @@ fi echo "$0: Generating TODOs.txt..." echo "### WARNING: THIS FILE IS AUTO-GENERATED BY $0 ###" > DOCS/TODOs.txt echo "### DO NOT EDIT THIS FILE. ###" >> DOCS/TODOs.txt -find -type f -name "*.php" -exec grep -Hn "@TODO" {} \; | sort >> DOCS/TODOs.txt +find -type f -name "*.php" -exec grep -Hin "@TODO" {} \; | sort >> DOCS/TODOs.txt +echo "### ### DEPRECATION FOLLOWS: ### ###" >> docs/TODOs.txt +find -type f -name "*.php" -exec grep -Hin "@DEPRECATED" {} \; | sort >> docs/TODOs.txt echo "$0: Done." exit 0