diff --git a/Makefile b/Makefile index 7bce901..ee04878 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,14 @@ local: index.bs bikeshed --die-on=warning spec index.bs index.html index.html: index.bs - @ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \ + @ (HTTP_STATUS=$$(curl https://www.w3.org/publications/spec-generator/ \ --output index.html \ --write-out "%{http_code}" \ --header "Accept: text/plain, text/html" \ -F die-on=warning \ - -F file=@index.bs) && \ + -F file=@index.bs \ + -F type=bikeshed-spec \ + -F output=html) && \ [[ "$$HTTP_STATUS" -eq "200" ]]) || ( \ echo ""; cat index.html; echo ""; \ rm -f index.html; \