Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixup! fixup! fixup! use built node if there isn't one in the path al…
…ready

Signed-off-by: flakey5 <[email protected]>
  • Loading branch information
flakey5 authored and ovflowd committed Nov 29, 2025
commit 01dc65c4a5791b3aacf77a16897f66998cf79af7
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ tools/doc/node_modules: tools/doc/package.json
else \
if ! [ `command -v node` ]; then \
if [ -x "$(NODE)" ] && [ -e "$(NODE)" ]; then \
export PATH=$(dir $(NODE)):${PATH}; \
export PATH="$(dir $(subst $\",,$(NODE))):${PATH};" \
else \
echo "No available node, cannot install dependencies"; \
exit 1; \
Expand Down