From 0bac06bcc9875ad9fdf34ceae546730a15447b8c Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Thu, 8 Feb 2018 15:25:34 +0800 Subject: [PATCH] Fix typos in Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d26c2c6b7..1e63715f4 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ test-unit: test-unit-cover: # First install packages that are dependencies of the test. go test -i -race -cover $(PKGS) - # go test doesn't support colleting coverage across multiple packages, + # go test doesn't support collecting coverage across multiple packages, # generate go test commands using go list and run go test for every package separately go list -f '"go test -race -cover -v -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"' github.com/kubernetes/kompose/... | grep -v "vendor" | xargs -L 1 -P4 sh -c @@ -107,12 +107,12 @@ test-dep: go get github.com/mitchellh/gox -# build docker image that is used for running all test localy +# build docker image that is used for running all test locally .PHONY: test-image test-image: docker build -t $(TEST_IMAGE) -f script/test_in_container/Dockerfile script/test_in_container/ -# run all test localy in docker image (image can be build by by build-test-image target) +# run all test locally in docker image (image can be build by by build-test-image target) .PHONY: test-container test-container: docker run -v `pwd`:/opt/tmp/kompose:ro -it $(TEST_IMAGE)