Browse Source

Merge pull request #8704 from gyuho/typo

*: fix typo in Makefile, add *.log, release directory to gitignore
Gyu-Ho Lee 8 years ago
parent
commit
a8f9de2abf
2 changed files with 3 additions and 1 deletions
  1. 2 0
      .gitignore
  2. 1 1
      Makefile

+ 2 - 0
.gitignore

@@ -2,10 +2,12 @@
 /gopath
 /gopath
 /gopath.proto
 /gopath.proto
 /go-bindata
 /go-bindata
+/release
 /machine*
 /machine*
 /bin
 /bin
 .vagrant
 .vagrant
 *.etcd
 *.etcd
+*.log
 /etcd
 /etcd
 *.swp
 *.swp
 /hack/insta-discovery/.env
 /hack/insta-discovery/.env

+ 1 - 1
Makefile

@@ -127,7 +127,7 @@ docker-test-proxy:
 	  --rm \
 	  --rm \
 	  --volume=`pwd`:/go/src/github.com/coreos/etcd \
 	  --volume=`pwd`:/go/src/github.com/coreos/etcd \
 	  gcr.io/etcd-development/etcd-test:$(_GO_VERSION) \
 	  gcr.io/etcd-development/etcd-test:$(_GO_VERSION) \
-	  /bin/bash -c "PASSES='build grpcproxy' ./test ./test 2>&1 | tee docker-test-proxy-$(TEST_SUFFIX).log"
+	  /bin/bash -c "PASSES='build grpcproxy' ./test 2>&1 | tee docker-test-proxy-$(TEST_SUFFIX).log"
 	! grep FAIL -A10 -B50 docker-test-proxy-$(TEST_SUFFIX).log
 	! grep FAIL -A10 -B50 docker-test-proxy-$(TEST_SUFFIX).log
 
 
 # build release container image with Linux
 # build release container image with Linux