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
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,9 @@ function setup {
162
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
163
INSTALLCHOICE=${INSTALLCHOICE:-n}
164
164
if [ "$INSTALLCHOICE"= y ] || [ "$INSTALLCHOICE"= Y ];then
165
-
git checkout php-src
165
+
cd ../releases/ ||exit
166
+
git clone https://github.com/php/php-src.git
167
+
cd php-src ||exit
166
168
elif [ "$INSTALLCHOICE"= n ] || [ "$INSTALLCHOICE"= N ];then
0 commit comments