You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 5, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: macos/install.sh
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ function setup {
6
6
read -p 'Which PHP version would you like to install?[latest-7.1/latest-7.2/latest-7.3/default: latest-7.4/latest-8.0/latest-master/q (quit)] ' PHPINSTALLVERSION
# Ask the user if the PHP CLI should be installed or not
133
142
read -p 'The tests have been completed and you may or may not have had failures on some of them. This can sometimes be ignored with the latest builds, or may need extra attention. Would you like to continue with installation?[default: y/Y/n/N] ' ERRORRESPONSE
134
143
ERRORRESPONSE=${ERRORRESPONSE:-y}
135
144
if [ "$ERRORRESPONSE"= y ] || [ "$ERRORRESPONSE"= Y ];then
145
+
# Install PHP CLI
136
146
echo Installing PHP-CLI
137
147
sudo make install ||exit
138
148
echo Installed PHP-CLI
139
149
exit 0
140
150
elif [ "$ERRORRESPONSE"= n ] || [ "$ERRORRESPONSE"= N ];then
0 commit comments