aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-01-10 18:23:30 +0100
committerLoïc Hoguin <[email protected]>2019-01-10 18:23:30 +0100
commita0613cf619c281ca052fbf4537e6e322875247a4 (patch)
treec29688782b9259eb504ffe4390821e98279d875b /Makefile
parente882466f2ec6ba8bd24d1f6342ae11b599547fc3 (diff)
downloadgun-a0613cf619c281ca052fbf4537e6e322875247a4.tar.gz
gun-a0613cf619c281ca052fbf4537e6e322875247a4.tar.bz2
gun-a0613cf619c281ca052fbf4537e6e322875247a4.zip
Don't fail in previous h2specd steps either
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0885fe0..7831ed0 100644
--- a/Makefile
+++ b/Makefile
@@ -53,6 +53,6 @@ test-build:: $(H2SPECD)
$(H2SPECD):
$(gen_verbose) mkdir -p $(GOPATH)/src/github.com/summerwind
- $(verbose) git clone --depth 1 https://github.com/summerwind/h2spec $(dir $(H2SPECD))
- $(verbose) $(MAKE) -C $(dir $(H2SPECD)) build MAKEFLAGS=
+ $(verbose) git clone --depth 1 https://github.com/summerwind/h2spec $(dir $(H2SPECD)) || true
+ $(verbose) $(MAKE) -C $(dir $(H2SPECD)) build MAKEFLAGS= || true
$(verbose) go build -o $(H2SPECD) $(dir $(H2SPECD))/cmd/h2spec/h2specd.go || true