diff --git a/www/docs/customization/homebrew.md b/www/docs/customization/homebrew.md index 215877b01..866446fdf 100644 --- a/www/docs/customization/homebrew.md +++ b/www/docs/customization/homebrew.md @@ -132,6 +132,13 @@ brews: install: | bin.install "program" ... + + # Custom post_install script for brew. + # Could be used to do any additional work after the "install" script + # Default is empty. + post_install: | + etc.install "app-config.conf" + ... ``` !!! tip @@ -171,6 +178,10 @@ class Program < Formula def install bin.install "program" end + + def post_install + etc.install "app-config.conf" + end end ```