]> git.mxchange.org Git - mailer.git/blobdiff - remove-deprecated.sh
Moved to contrib/ in preperation for merge
[mailer.git] / remove-deprecated.sh
diff --git a/remove-deprecated.sh b/remove-deprecated.sh
deleted file mode 100755 (executable)
index 99ea271..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-if ! test -e "modules.php"; then
-       echo "$0: Please execute this script from root directory."
-       exit 1
-fi
-
-echo "$0: Searching for deprecated PHP scripts ..."
-LIST1=`find -type f -name "*.php" -size 24c -exec grep -H "@DEPRECATED" {} \;`
-
-echo "$0: Searching for deprecated templates ..."
-LIST2=`find -type f -name "*.tpl" -exec grep -H "@DEPRECATED" {} \;`
-
-LIST="${LIST1} ${LIST2}"
-
-if test "${LIST}" != " "; then
-       echo "${LIST}" | cut -d ":" -f 1 | xargs svn --force del
-       sh ../../contrib/todo-builder.sh
-fi