mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

At the time of this commit, there is a dedicated folder for development related tools and such scripts might fit better there to not bloat the project root directory too much. Move snapshot to scripts/dev/snapshot
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
|