diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2016-08-11 08:08:26 +0900 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2016-08-11 08:08:26 +0900 |
commit | a38bc7b373c85fc4413a0f194180a24ada58850d (patch) | |
tree | 4b65670a8ffc850bd288020f76109ca3a8611c5f /vcsclean | |
parent | 243d5fcb1f070025fa19a5e31a3d8d64c8d1a1e6 (diff) | |
download | php-git-a38bc7b373c85fc4413a0f194180a24ada58850d.tar.gz |
Support "git worktree"
Diffstat (limited to 'vcsclean')
-rwxr-xr-x | vcsclean | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -if test -d '.git'; then +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." |