php-src/vcsclean
2016-08-11 08:08:26 +09:00

8 lines
159 B
Bash
Executable File

#! /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