]> git.mxchange.org Git - core.git/blobdiff - contrib/commit-trunks.sh
Cleanup:
[core.git] / contrib / commit-trunks.sh
diff --git a/contrib/commit-trunks.sh b/contrib/commit-trunks.sh
deleted file mode 100755 (executable)
index 5c44dec..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-if test "$1" = ""; then
-       echo "Usage: $0 \"<commit-comment>\""
-       exit 1
-fi
-
-echo "$0: Reading projects..."
-LIST=`find */trunk/application/*/*.php | cut -d "/" -f 1-2 | sort --unique`
-
-for repos in ${LIST}; do
-       echo "$0: Committing in ${repos} ..."
-       cd "${repos}" || exit 255
-       svn commit -m "$1"
-       cd -
-done
-
-exit 0