shithub: hugo

Download patch

ref: d3627b1747c18eb18279012afe5ba7174bdaa869
parent: d72c454f78e1d2d099bef19221fb3065e0889b99
author: Cameron Moore <[email protected]>
date: Tue Aug 16 05:09:19 EDT 2016

Simplify Travis build

--- a/.travis.yml
+++ b/.travis.yml
@@ -19,6 +19,3 @@
 before_install:
   - gem install asciidoctor
   - sudo pip install docutils
-install:
-  - go get github.com/stretchr/testify
-  - go get -v ./...
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@
 	docker rm hugo-build
 
 
-check: fmt vet test test-race
+check: get fmt vet test test-race
 
 cyclo:
 	@for d in $(DIRS) ; do \
@@ -55,6 +55,9 @@
 	@if [ "`golint ./... | tee /dev/stderr`" ]; then \
 		echo "^ golint errors!" && echo && exit 1; \
 	fi
+
+get:
+	go get -v -t ./...
 
 test:
 	go test ./...