summaryrefslogtreecommitdiff
path: root/vcsclean
blob: fc7fc2f805ffb8d88629ea77a763ed9b5c2a8afd (plain)
1
2
3
4
5
6
7
#! /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