mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 10:59:43 -05:00
13 lines
224 B
Makefile
13 lines
224 B
Makefile
plugin:
|
|
go get -d -v ./...
|
|
go build -v -o $(ROOTDIR)/bin/packer-build
|
|
|
|
format:
|
|
go fmt ./...
|
|
|
|
test:
|
|
@go list -f '{{range .TestImports}}{{.}}\
|
|
{{end}}' ./... | xargs -n1 go get -d
|
|
go test ./...
|
|
|
|
.PHONY: all format test
|