We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f877a1 commit 9ea9162Copy full SHA for 9ea9162
Makefile
@@ -798,6 +798,14 @@ tools/doc/node_modules: tools/doc/package.json
798
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \
799
echo "Skipping tools/doc/node_modules (no crypto and/or no ICU)"; \
800
else \
801
+ if ! [ `command -v node` ]; then \
802
+ if [ -x "$(NODE)" ] && [ -e "$(NODE)" ]; then \
803
+ export PATH=$(dir $(NODE)):${PATH}"; \
804
+ else \
805
+ echo "No available node, cannot install dependencies"; \
806
+ exit 1; \
807
+ fi; \
808
809
cd tools/doc && $(call available-node,$(run-npm-ci)) \
810
fi
811
0 commit comments