diff options
| -rw-r--r-- | Brewfile | 1 | ||||
| -rw-r--r-- | Makefile | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Brewfile b/Brewfile new file mode 100644 index 0000000..48c2d2a --- /dev/null +++ b/Brewfile @@ -0,0 +1 @@ +brew "envoy" @@ -19,6 +19,12 @@ setup: @go mod tidy @go mod vendor @go tool + @if command -v brew >/dev/null 2>&1; then \ + echo "Installing Homebrew packages..."; \ + brew bundle; \ + else \ + echo "Homebrew not found, skipping brew bundle"; \ + fi build: bin/authzd bin/sparkled |
