Skip to content

Commit

Permalink
ci: add missing Go package on Mac (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas authored Dec 13, 2023
1 parent 9046b97 commit e3e2ab3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion build-static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/embed.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The resulting binary is the file named `frankenphp-<os>-<arch>` 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-<os>-<arch>` on other OSes) contains your self-contained app!
To start the web app run:
Expand Down

0 comments on commit e3e2ab3

Please sign in to comment.