We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5ca12 commit 0d3c5d0Copy full SHA for 0d3c5d0
tools/make/lib/examples/Makefile
@@ -6,7 +6,7 @@
6
# This target runs a list of examples in sequential order. Note that we assume the examples can be run using Node.js.
7
8
examples: $(NODE_MODULES)
9
- $(QUIET) $(FIND_EXAMPLES_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \
+ $(QUIET) set -o pipefail ; $(FIND_EXAMPLES_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \
10
echo ""; \
11
echo "Running example: $$file"; \
12
NODE_ENV=$(NODE_ENV_EXAMPLES) \
0 commit comments