Skip to content

Commit 4e00652

Browse files
committed
Properly escape $ in makefile
1 parent de25d5b commit 4e00652

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ mock_gen:
6767
# Unit tests with faster execution (nicer for development).
6868
.PHONY: fast-test
6969
fast-test:
70-
go test -mod=vendor -race $(shell go list ./... | grep -v -e "/e2e$" -e "/e2e/.*")
70+
go test -mod=vendor -race $(shell go list ./... | grep -v -e "/e2e$$" -e "/e2e/.*")
7171
cd konnectivity-client && go test -race ./...
7272

7373
# Unit tests with fuller coverage, invoked by CI system.
7474
.PHONY: test
7575
test:
76-
go test -mod=vendor -race -covermode=atomic -coverprofile=konnectivity.out $(shell go list ./... | grep -v -e "/e2e$" -e "/e2e/.*") && go tool cover -html=konnectivity.out -o=konnectivity.html
76+
go test -mod=vendor -race -covermode=atomic -coverprofile=konnectivity.out $(shell go list ./... | grep -v -e "/e2e$$" -e "/e2e/.*") && go tool cover -html=konnectivity.out -o=konnectivity.html
7777
cd konnectivity-client && go test -race -covermode=atomic -coverprofile=client.out ./... && go tool cover -html=client.out -o=client.html
7878

7979
.PHONY: test-integration

0 commit comments

Comments
 (0)