Skip to content

Commit f503d76

Browse files
committed
Update Makefile vs gohugoio/hugo
1 parent 9364386 commit f503d76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎Makefile‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ test-race: ## Run tests with race detector
5050
govendor test -race +local
5151

5252
fmt: ## 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

5959
lint: ## 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/./')
7272
test-cover-html: ## Generate test coverage report
7373
echo "mode: count" > coverage-all.out
7474
$(foreach pkg,$(PACKAGES),\

0 commit comments

Comments
 (0)