Build to bin/

This commit is contained in:
Marcin Kulik
2014-08-09 21:51:17 +02:00
parent 028d360a1d
commit 7d8f58884b
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
bin/*

View File

@@ -4,7 +4,7 @@ deps:
go get -d -v ./...
build: test
go build
go build -o bin/asciinema
test:
go test ./...
@@ -13,3 +13,6 @@ fmt:
find . -type f -name "*.go" | xargs gofmt -d
travis: build fmt
gox:
gox -os="darwin linux" -arch="386 amd64" -output="bin/asciinema_{{.OS}}_{{.Arch}}"