Skip to content

Commit

Permalink
Makefile: web api call must set 'force=true'
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Oct 18, 2016
1 parent 252b817 commit 0efa29e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0efa29e

Please sign in to comment.