X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=DOCS%2Ftodo-builder.sh;h=a005c9bbc71e89732efe88c7bce460b06f423407;hp=0765d1e73706a4ffdd366dc1f502b5ae2e4d0302;hb=b7d58f3179de36d34e691500e98b49bcdbe3d5d3;hpb=155f46e7464ead4e1e6e5441b68846823658ff3e diff --git a/DOCS/todo-builder.sh b/DOCS/todo-builder.sh index 0765d1e737..a005c9bbc7 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" {} \; >> 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