We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50212ea commit 1c8e2ebCopy full SHA for 1c8e2eb
words_extractor_go/Makefile
@@ -3,19 +3,19 @@ BINARY_NAME=sort-me-out
3
all: clean test build
4
5
build:
6
- go build -o ${BINARY_NAME} *.go
+ @go build -o ${BINARY_NAME} *.go
7
8
run: build
9
./${BINARY_NAME}
10
11
test:
12
- go test ./... -v -coverprofile=coverage.out
+ @go test ./... -v -coverprofile=coverage.out
13
14
cover: test
15
- go tool cover -html=coverage.out
+ @go tool cover -html=coverage.out
16
17
clean:
18
- go clean
+ @go clean
19
rm -f coverage.out
20
rm -f ./${BINARY_NAME}
21
rm -rf ./words
0 commit comments