File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,14 +50,14 @@ test-race: ## Run tests with race detector
5050 govendor test -race +local
5151
5252fmt : # # Run gofmt linter
53- @for d in ` govendor list -no-status +local | sed ' s/github.com.spf13 .hugo/./' ` ; do \
53+ @for d in ` govendor list -no-status +local | sed ' s/github.com.gohugoio .hugo/./' ` ; do \
5454 if [ " ` gofmt -l $$ d/* .go | tee /dev/stderr` " ]; then \
5555 echo " ^ improperly formatted go files" && echo && exit 1; \
5656 fi \
5757 done
5858
5959lint : # # Run golint linter
60- @for d in ` govendor list -no-status +local | sed ' s/github.com.spf13 .hugo/./' ` ; do \
60+ @for d in ` govendor list -no-status +local | sed ' s/github.com.gohugoio .hugo/./' ` ; do \
6161 if [ " ` golint $$ d | tee /dev/stderr` " ]; then \
6262 echo " ^ golint errors!" && echo && exit 1; \
6363 fi \
@@ -68,7 +68,7 @@ vet: ## Run go vet linter
6868 echo " ^ go vet errors!" && echo && exit 1; \
6969 fi
7070
71- test-cover-html : PACKAGES = $(shell govendor list -no-status +local | sed 's/github.com.spf13 .hugo/./')
71+ test-cover-html : PACKAGES = $(shell govendor list -no-status +local | sed 's/github.com.gohugoio .hugo/./')
7272test-cover-html : # # Generate test coverage report
7373 echo " mode: count" > coverage-all.out
7474 $(foreach pkg,$(PACKAGES ) ,\
You can’t perform that action at this time.
0 commit comments