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:
21
vendor/github.com/docker/engine-api/Makefile
generated
vendored
Normal file
21
vendor/github.com/docker/engine-api/Makefile
generated
vendored
Normal 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
|
Reference in New Issue
Block a user