summaryrefslogtreecommitdiff
path: root/vcsclean
diff options
context:
space:
mode:
Diffstat (limited to 'vcsclean')
-rwxr-xr-xvcsclean6
1 files changed, 1 insertions, 5 deletions
diff --git a/vcsclean b/vcsclean
index e1004e4349..b5d201b69f 100755
--- a/vcsclean
+++ b/vcsclean
@@ -1,10 +1,6 @@
#! /bin/sh
-if test -d 'CVS'; then
- ${MAKE:-make} -f build/build.mk cvsclean-work
-elif test -d '.svn'; then
- ${MAKE:-make} -f build/build.mk svnclean-work
-elif test -d '.git'; then
+if test -d '.git'; then
${MAKE:-make} -f build/build.mk gitclean-work
else
echo "Can't figure out your VCS, not cleaning."