Merge pull request #213 from tianon/crosbymichael_test.go

Fix "go install -v . ./.git/logs/refs/heads ./.git/refs/heads ..."
This commit is contained in:
Michael Crosby 2014-10-03 11:06:24 -07:00
commit 2dce757d21
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ test:
sh:
docker run --rm -it --privileged -w /busybox docker/libcontainer nsinit exec sh
GO_PACKAGES = $(shell find . -not \( -wholename ./vendor -prune \) -name '*.go' -print0 | xargs -0n1 dirname | sort -u)
GO_PACKAGES = $(shell find . -not \( -wholename ./vendor -prune -o -wholename ./.git -prune \) -name '*.go' -print0 | xargs -0n1 dirname | sort -u)
direct-test:
go test -cover -v $(GO_PACKAGES)