update build cmd to create 64bit version

This commit is contained in:
Fabricio 2019-12-20 18:12:34 -03:00
parent bbf3529d46
commit 71bff2f012

View file

@ -50,11 +50,11 @@ Via docker:
git clone --depth 1 https://github.com/ofabricio/capture.git
cd capture
docker run --rm -v $(pwd):/src -w /src -e GOOS=darwin golang:alpine go build -o capture
docker run --rm -v $(pwd):/src -w /src -e GOOS=darwin -e GOARCH=amd64 golang:alpine go build -o capture
Now you have an executable binary in your directory
**Note:** you can change `GOOS=darwin` to `linux` or `windows`
**Note:** you can change `GOOS=darwin` to `linux` or `windows` to create an executable for your corresponding Operating System
## Plugins