diff options
author | Alvaro Saurin <alvaro.saurin@gmail.com> | 2017-10-19 17:39:31 +0200 |
---|---|---|
committer | Alvaro <alvaro.saurin@gmail.com> | 2017-11-27 13:04:37 +0100 |
commit | c7cc7221d46e8fa7ee7d64c7eab64f5515980fc1 (patch) | |
tree | 94f923062c9ff708b7f5c80621a6f6634befd0b2 /Makefile | |
parent | 39b7567db8477cebf98ca7ff225c2a356b42bd98 (diff) | |
download | terraform-provider-libvirt-c7cc7221d46e8fa7ee7d64c7eab64f5515980fc1.tar terraform-provider-libvirt-c7cc7221d46e8fa7ee7d64c7eab64f5515980fc1.tar.gz |
Simplify the wait_for_leases mechanism
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -3,11 +3,12 @@ default: build build: gofmtcheck golint vet go build -install: +install: go install -test: - bash travis/run_acceptance_test.sh +test: + bash travis/run-tests-acceptance + vet: @echo "go vet ." @go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \ @@ -19,7 +20,8 @@ vet: golint: golint ./libvirt + gofmtcheck: - bash travis/gofmtcheck.sh + bash travis/run-gofmt .PHONY: build install test vet fmt golint |