mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
7 lines
159 B
Bash
Executable file
7 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
|