Skip to content

Commit

Permalink
update build cmd to create 64bit version
Browse files Browse the repository at this point in the history
  • Loading branch information
ofabricio committed Dec 20, 2019
1 parent bbf3529 commit 71bff2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 71bff2f

Please sign in to comment.