Re: [heycam/webidl] Meta: use Makefile from deploy.sh (#850)

```diff
commit 4c9f51e332cb6522f98c34ed1f5f00b2eb62034d
Author: Michael[tm] Smith <mike@w3.org>
Date:   Fri Mar 13 16:20:43 2020 +0900

    Add some 'ifndef $(TRAVIS)'

diff --git a/Makefile b/Makefile
index e310d6a..77542fe 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ index.html : index.bs
 ifdef bs_installed
  bikeshed spec --die-on=warning index.bs
 else
+ifndef $(TRAVIS)
  @echo Can\'t find a local version of Bikeshed. To install it, visit:
  @echo
  @echo https://github.com/tabatkins/bikeshed/blob/master/docs/install.md
@@ -29,11 +30,14 @@ else
   exit 22 \
  );
 endif
+endif
 ifdef node_installed
  node ./check-grammar.js index.html
 else
+ifndef $(TRAVIS)
  @echo You need node for grammer checking.
 endif
+endif
 ifdef pp_webidl_installed
  npm run pp-webidl -- --input index.html
 else ifdef npm_installed
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/pull/850#issuecomment-598667607

Received on Friday, 13 March 2020 11:02:24 UTC