diff options
author | Loïc Hoguin <[email protected]> | 2019-03-10 11:21:51 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2019-03-10 11:21:51 +0100 |
commit | b9d329c026c8809a6b7ab3cd312598d66081e3f9 (patch) | |
tree | d059e5e0ce9f2974403102676523a7161d70ef6a /Makefile | |
parent | 4918e271bd60e332a6dd1be10762dcb180a623fc (diff) | |
download | cowboy-b9d329c026c8809a6b7ab3cd312598d66081e3f9.tar.gz cowboy-b9d329c026c8809a6b7ab3cd312598d66081e3f9.tar.bz2 cowboy-b9d329c026c8809a6b7ab3cd312598d66081e3f9.zip |
Don't error out when h2spec can't be compiled
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |