We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea6e7a6 commit 520c28fCopy full SHA for 520c28f
1 file changed
tools/make/lib/addons/Makefile
@@ -25,7 +25,7 @@ FORTRAN_COMPILER ?= gfortran
25
26
install-addons: $(NODE_GYP)
27
$(QUIET) $(MAKE) -f $(this_file) list-pkgs-addons | while read -r pkg; do \
28
- if [[ "$$pkg" != /* ]]; then \
+ if echo "$$pkg" | grep -v '^\/.*' >/dev/null; then \
29
continue; \
30
fi; \
31
echo ''; \
@@ -48,7 +48,7 @@ install-addons: $(NODE_GYP)
48
49
clean-addons:
50
51
52
53
54
0 commit comments