Skip to content

Commit 5171656

Browse files
author
Denis Krivak
committed
Fix makefile.
1 parent fcb8781 commit 5171656

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ test:
44

55
.PHONY: cover
66
cover:
7-
@ go test -coverprofile cover.out ./...
8-
@ go tool cover -html=cover.out -o cover.html
9-
@ rm -f cover.out
7+
go test -coverprofile cover.out ./...
8+
go tool cover -html=cover.out
9+
rm -f cover.out
1010

1111
.PHONY: lint
1212
lint:
13-
@ golangci-lint run
13+
golangci-lint run
1414

1515
.PHONY: build
1616
build:

0 commit comments

Comments
 (0)