https://github.com/quicwg/base-drafts
Raw File
Tip revision: 0aa52bd95164ee514bf81ffc91a3ef6e9b5b8ee8 authored by Mike Bishop on 14 January 2017, 18:27:12 UTC
Fixing my e-mail address
Tip revision: 0aa52bd
Makefile
include lib/main.mk

lib/main.mk:
ifneq (,$(shell git submodule status lib 2>/dev/null))
	git submodule sync
	git submodule update --init
else
	git clone -q --depth 10 -b master https://github.com/martinthomson/i-d-template.git lib
endif

latest::
	@if grep -l ' $$' *.md; then ! echo "Trailing whitespace found"; fi
back to top