From b9d329c026c8809a6b7ab3cd312598d66081e3f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 10 Mar 2019 11:21:51 +0100 Subject: Don't error out when h2spec can't be compiled --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0d6a566..38b5ed5 100644 --- a/Makefile +++ b/Makefile @@ -71,8 +71,8 @@ test-build:: $(H2SPEC) $(H2SPEC): $(gen_verbose) mkdir -p $(GOPATH)/src/github.com/summerwind - $(verbose) git clone --depth 1 https://github.com/summerwind/h2spec $(dir $(H2SPEC)) - $(verbose) $(MAKE) -C $(dir $(H2SPEC)) build MAKEFLAGS= + $(verbose) git clone --depth 1 https://github.com/summerwind/h2spec $(dir $(H2SPEC)) || true + $(verbose) $(MAKE) -C $(dir $(H2SPEC)) build MAKEFLAGS= || true # Use erl_make_certs from the tested release during CI # and ensure that ct_helper is always recompiled. -- cgit v1.2.3