mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
8 lines
159 B
Bash
Executable File
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
|