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