URI: 
       Update Makefile vs gohugoio/hugo - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit f503d76a3b2719bbb65ab9df5595d0dbc871fae9
   DIR parent 93643860c9db10c6c32176b17cc83f1c317279bd
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Tue, 13 Jun 2017 19:06:34 +0200
       
       Update Makefile vs gohugoio/hugo
       
       Diffstat:
         M Makefile                            |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       @@ -50,14 +50,14 @@ test-race: ## Run tests with race detector
                govendor test -race +local
        
        fmt: ## Run gofmt linter
       -        @for d in `govendor list -no-status +local | sed 's/github.com.spf13.hugo/./'` ; do \
       +        @for d in `govendor list -no-status +local | sed 's/github.com.gohugoio.hugo/./'` ; do \
                        if [ "`gofmt -l $$d/*.go | tee /dev/stderr`" ]; then \
                                echo "^ improperly formatted go files" && echo && exit 1; \
                        fi \
                done
        
        lint: ## Run golint linter
       -        @for d in `govendor list -no-status +local | sed 's/github.com.spf13.hugo/./'` ; do \
       +        @for d in `govendor list -no-status +local | sed 's/github.com.gohugoio.hugo/./'` ; do \
                        if [ "`golint $$d | tee /dev/stderr`" ]; then \
                                echo "^ golint errors!" && echo && exit 1; \
                        fi \
       @@ -68,7 +68,7 @@ vet: ## Run go vet linter
                        echo "^ go vet errors!" && echo && exit 1; \
                fi
        
       -test-cover-html: PACKAGES = $(shell govendor list -no-status +local | sed 's/github.com.spf13.hugo/./')
       +test-cover-html: PACKAGES = $(shell govendor list -no-status +local | sed 's/github.com.gohugoio.hugo/./')
        test-cover-html: ## Generate test coverage report
                echo "mode: count" > coverage-all.out
                $(foreach pkg,$(PACKAGES),\