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
+20-20Lines changed: 20 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -158,33 +158,33 @@ function setup() {
158
158
echo invalid argument, exiting...
159
159
setup
160
160
fi
161
-
elif [ "$PHPINSTALLVERSION" = latest-master ]; then
162
-
read -p 'CAREFUL: This is a pre-release version and is in heavy development. Install this only if you want the latest bleeding-edge features. These may not have been tested thoroughly and should not be used in a production environment. Are you sure you want to install?[y/Y/default: n/N] ' INSTALLCHOICE
163
-
INSTALLCHOICE=${INSTALLCHOICE:-n}
164
-
if [ "$INSTALLCHOICE" = y ] || [ "$INSTALLCHOICE" = Y ]; then
165
-
cd ../releases/ || exit
166
-
git clone https://github.com/php/php-src.git
167
-
cd php-src || exit
168
-
elif [ "$INSTALLCHOICE" = n ] || [ "$INSTALLCHOICE" = N ]; then
elif [ "$PHPINSTALLVERSION" = latest-master ]; then
163
+
read -p 'CAREFUL: This is a pre-release version and is in heavy development. Install this only if you want the latest bleeding-edge features. These may not have been tested thoroughly and should not be used in a production environment. Are you sure you want to install?[y/Y/default: n/N] ' INSTALLCHOICE
164
+
INSTALLCHOICE=${INSTALLCHOICE:-n}
165
+
if [ "$INSTALLCHOICE" = y ] || [ "$INSTALLCHOICE" = Y ]; then
166
+
cd ../ || exit
167
+
git clone https://github.com/php/php-src.git
168
+
cd php-src || exit
169
+
elif [ "$INSTALLCHOICE" = n ] || [ "$INSTALLCHOICE" = N ]; then
0 commit comments