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 1f6a9d2 commit 860d83dCopy full SHA for 860d83d
Makefile
@@ -806,6 +806,14 @@ tools/doc/node_modules: tools/doc/package.json
806
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \
807
echo "Skipping tools/doc/node_modules (no crypto and/or no ICU)"; \
808
else \
809
+ if ! [ `command -v node` ]; then \
810
+ if [ -x "$(NODE)" ] && [ -e "$(NODE)" ]; then \
811
+ export PATH=$(dir $(NODE)):${PATH}"; \
812
+ else \
813
+ echo "No available node, cannot install dependencies"; \
814
+ exit 1; \
815
+ fi; \
816
817
cd tools/doc && $(call available-node,$(run-npm-ci)) \
818
fi
819
0 commit comments