1
0
mirror of https://github.com/rancher/os.git synced 2025-09-13 05:33:34 +00:00

Bump libcompose and its dependencies

This commit is contained in:
Josh Curl
2016-05-23 17:22:40 -07:00
parent c18cd26e78
commit 50de80d09a
1109 changed files with 35052 additions and 125685 deletions

21
vendor/github.com/docker/engine-api/Makefile generated vendored Normal file
View File

@@ -0,0 +1,21 @@
.PHONY: all deps test validate lint
all: deps test validate
deps:
go get -t ./...
go get github.com/golang/lint/golint
test:
go test -race -cover ./...
validate: lint
go vet ./...
test -z "$(gofmt -s -l . | tee /dev/stderr)"
lint:
out="$$(golint ./...)"; \
if [ -n "$$(golint ./...)" ]; then \
echo "$$out"; \
exit 1; \
fi