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
+29-8Lines changed: 29 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
#!/bin/bash
2
2
3
-
functioncompilePHP {
3
+
# Pre-install setup (install version choice, brew install, decompress files, cd into directory, etc.)
4
+
functionsetup {
4
5
# Install All Dependencies
5
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] ' PHPINSTALLVERSION
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
116
129
ERRORRESPONSE=${ERRORRESPONSE:-y}
117
130
if [ "$ERRORRESPONSE"= y ] || [ "$ERRORRESPONSE"= Y ];then
0 commit comments