summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2019-05-04 17:28:24 +0200
committerPeter Kokot <peterkokot@gmail.com>2019-05-08 21:51:01 +0200
commit4eb67310a0b0f8daddf4edc1f8e41a3dae648953 (patch)
treed24ff045d84bf250c079c8bc0d3cdd4018d1d6f7 /scripts
parentec10e191c4bd4ab2cd2d95a2e4589679f8deb564 (diff)
downloadphp-git-4eb67310a0b0f8daddf4edc1f8e41a3dae648953.tar.gz
Remove vcsclean script
The vcsclean script is really only a wrapper for a git clean command. Developers should use the more proper and clear native Git command directly instead: `git clean -Xfd`
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev/vcsclean7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/dev/vcsclean b/scripts/dev/vcsclean
deleted file mode 100755
index fc7fc2f805..0000000000
--- a/scripts/dev/vcsclean
+++ /dev/null
@@ -1,7 +0,0 @@
-#! /bin/sh
-
-if test -d '.git' -o -f '.git'; then
- ${MAKE:-make} -f build/build.mk gitclean-work
-else
- echo "Can't figure out your VCS, not cleaning."
-fi