Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,11 @@ install-dependencies: ## Install development dependencies based on OS/ARCH
fi; \
elif [ "$(TARGETOS)" = "darwin" ]; then \
if [ -x "$$(command -v brew)" ]; then \
if ! brew list zeromq >/dev/null 2>&1; then \
if ! brew list zeromq pkg-config >/dev/null 2>&1; then \
echo "Installing dependencies with brew..."; \
brew install zeromq; \
brew install zeromq pkg-config; \
else \
echo "✅ ZeroMQ is already installed."; \
echo "✅ ZeroMQ and pkgconf are already installed."; \
fi; \
else \
echo "Homebrew is not installed and is required to install zeromq. Install it from https://brew.sh/"; \
Expand Down
Loading