diff --git a/build-static.sh b/build-static.sh index 8162a2e7f..19d80ce40 100755 --- a/build-static.sh +++ b/build-static.sh @@ -69,11 +69,15 @@ else if type "brew" > /dev/null; then packages="composer" + if ! type "go" > /dev/null; then + packages="$packages go" + fi if [ "$RELEASE" ]; then packages="$packages gh" fi - brew install --formula --quiet "$packages" + # shellcheck disable=SC2086 + brew install --formula --quiet $packages fi composer install --no-dev -a diff --git a/docs/embed.md b/docs/embed.md index af4a6275e..d47dc5ca7 100644 --- a/docs/embed.md +++ b/docs/embed.md @@ -89,7 +89,7 @@ The resulting binary is the file named `frankenphp--` in the `dist/` d ## Using The Binary -This is it! The `my-app` file contains your self-contained app! +This is it! The `my-app` file (or `dist/frankenphp--` on other OSes) contains your self-contained app! To start the web app run: