From 4eb67310a0b0f8daddf4edc1f8e41a3dae648953 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 4 May 2019 17:28:24 +0200 Subject: 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` --- scripts/dev/vcsclean | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 scripts/dev/vcsclean (limited to 'scripts/dev') 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 -- cgit v1.2.1