diff --git a/Makefile b/Makefile index 0e6e512..25607c2 100644 --- a/Makefile +++ b/Makefile @@ -104,6 +104,7 @@ coverage: .PHONY: cleanall cleanall: rm -fr bin include lib local share develop-eggs downloads eggs parts .installed.cfg + .PHONY: vc vc: bin/versioncheck -rbo checkversion.html diff --git a/bin/svn_global.sh b/bin/svn_global.sh deleted file mode 100755 index caf6a75..0000000 --- a/bin/svn_global.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -svnparam="st" -if [ "$*" != "" ]; -then - svnparam=$* -else - echo "!! You must pass a svn command as parameter : st, diff, up, ..." - exit 0 -fi - -ScriptLocation="." -if [[ $0 == '/'* ]]; -then - ScriptLocation="`dirname $0`" -else - ScriptLocation="`pwd`"/"`dirname $0`" -fi - -# svn diff on all subdirectories of parts/svnproducts -find $ScriptLocation/../parts/svnproducts/ -maxdepth 1 -mindepth 1 -type d -name "??*" -print0 |xargs -0 svn $svnparam