From 0efa29ea322b60e9ecf07add4fd3b4dc50eb0090 Mon Sep 17 00:00:00 2001 From: Konstantin Baierer Date: Tue, 18 Oct 2016 02:02:42 +0200 Subject: [PATCH] Makefile: web api call must set 'force=true' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2e63544..d45a0ef 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ $(SPEC_HTML): $(SPEC_BS) case "$(BIKESHED)" in \ bikeshed) bikeshed -f spec $(SPEC_BS) ;; \ docker) docker run --rm -it -v $(PWD):/data kbai/bikeshed -f spec $(SPEC_BS) ;; \ - curl) curl "https://api.csswg.org/bikeshed/" -o $(SPEC_HTML) -F file=@$(SPEC_BS) ;; \ + curl) curl "https://api.csswg.org/bikeshed/" -o $(SPEC_HTML) -F force=true -F file=@$(SPEC_BS) ;; \ *) echo 'Unsupported bikeshed backend "$(BIKESHED)"'; exit 1 ;;\ esac