build to dist

This commit is contained in:
Mikaël Cluseau 2020-08-06 12:08:57 +02:00
parent 5a5d133e9a
commit 6727636e77
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/dist

View File

@ -1,4 +1,4 @@
**/*.go go.* { **/*.go go.* {
prep: go test ./... prep: go test ./...
prep: go install ./cmd/... prep: mkdir -p dist; go build -trimpath -o dist ./cmd/...
} }