mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Move some scripts from root directory to scripts/dev/
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
This commit is contained in:
parent
6662fb5c8f
commit
e0c88039b6
2 changed files with 0 additions and 0 deletions
7
scripts/dev/snapshot
Executable file
7
scripts/dev/snapshot
Executable file
|
@ -0,0 +1,7 @@
|
|||
#! /bin/sh
|
||||
|
||||
if test -n "$1"; then
|
||||
flags="DISTNAME=$1"
|
||||
fi
|
||||
|
||||
${MAKE:-make} $flags -f build/build.mk snapshot
|
7
scripts/dev/vcsclean
Executable file
7
scripts/dev/vcsclean
Executable file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue