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
108 B
Bash
Executable file
7 lines
108 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if test -n "$1"; then
|
|
flags="DISTNAME=$1"
|
|
fi
|
|
|
|
${MAKE:-make} $flags -f build/build.mk snapshot
|