File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -366,16 +366,16 @@ download-zmq: ## Install ZMQ dependencies based on OS/ARCH
366
366
else \
367
367
echo " Installing ZMQ dependencies..." ; \
368
368
if [ " $( TARGETOS) " = " linux" ]; then \
369
- if [ -x " $( command -v apt) " ]; then \
369
+ if [ -x " $$ (command -v apt)" ]; then \
370
370
apt update && apt install -y libzmq3-dev; \
371
- elif [ -x " $( command -v dnf) " ]; then \
371
+ elif [ -x " $$ (command -v dnf)" ]; then \
372
372
dnf install -y zeromq-devel; \
373
373
else \
374
374
echo " Unsupported Linux package manager. Install libzmq manually." ; \
375
375
exit 1; \
376
376
fi ; \
377
377
elif [ " $( TARGETOS) " = " darwin" ]; then \
378
- if [ -x " $( command -v brew) " ]; then \
378
+ if [ -x " $$ (command -v brew)" ]; then \
379
379
brew install zeromq; \
380
380
else \
381
381
echo " Homebrew is not installed and is required to install zeromq. Install it from https://brew.sh/" ; \
You can’t perform that action at this time.
0 commit comments