Skip to content

Commit

Permalink
ci: fix makefile error
Browse files Browse the repository at this point in the history
  • Loading branch information
yunnysunny committed May 8, 2022
1 parent b0b1f9a commit b8bf5e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ test:
@if [ "$(BROWSER)" = "1" ]; then \
echo test on browser; \
make test-browser; \
fi
fi \

@if [ "$(NODE_TEST)" = "1" ] || [ "x$(BROWSER)" = "x" ]; then \
@if [ "$(HTTP2_TEST_DISABLED)" != "1" ]; then \
echo test on node with htt2; \
export HTTP2_TEST="1" && make test-node; \
fi \
echo test on node with http1; \
export HTTP2_TEST="" && make test-node; \
if [ "$(HTTP2_TEST_DISABLED)" != "1" ]; then \
echo test on node with http2; \
export HTTP2_TEST="1" && make test-node; \
fi \
fi

copy:
Expand Down

0 comments on commit b8bf5e8

Please sign in to comment.