From d0a2f118a66ca9b34b0aeb004e0bcf8cd6db641d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 23 Jul 2016 08:11:42 +0200 Subject: build tools for php 7.1 (base package) --- getmock | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'getmock') diff --git a/getmock b/getmock index 98998bc..31da785 100755 --- a/getmock +++ b/getmock @@ -158,6 +158,10 @@ if [ $1 = test70 ]; then opt=test70 shift fi +if [ $1 = test71 ]; then + opt=test71 + shift +fi if [ $1 = php55 ]; then opt=php55 shift @@ -170,6 +174,10 @@ if [ $1 = php70 ]; then opt=php70 shift fi +if [ $1 = php71 ]; then + opt=php71 + shift +fi if [ $1 = devs -o $1 = dev ]; then opt=devs shift @@ -221,6 +229,20 @@ elif [ $1 = all70 ]; then n=7 getOneMock el${n}x $opt +elif [ $1 = all71 ]; then + [ $opt = remi ] && opt=php71 + [ $opt = test ] && opt=test71 + for n in 21 22 23 24 + do + getOneMock fc${n}i $opt + getOneMock fc${n}x $opt + done + n=6 + getOneMock el${n}i $opt + getOneMock el${n}x $opt + n=7 + getOneMock el${n}x $opt + elif [ $1 = all54 ]; then for n in 5 6 do -- cgit