Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Update README.md #119

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ platforms. Gox will also build the cross-compilation toolchain for you.
To install Gox, please use `go get`. We tag versions so feel free to
checkout that tag and compile.

```
```bash
$ go get github.com/mitchellh/gox
...
$ gox -h
Expand All @@ -23,7 +23,7 @@ example, to build the current package, specify no parameters and just
call `gox`. Gox will parallelize based on the number of CPUs you have
by default and build for every platform by default:

```
```bash
$ gox
Number of parallel builds: 4

Expand All @@ -47,28 +47,28 @@ Number of parallel builds: 4

Or, if you want to build a package and sub-packages:

```
```bash
$ gox ./...
...
```

Or, if you want to build multiple distinct packages:

```
```bash
$ gox github.com/mitchellh/gox github.com/hashicorp/serf
...
```

Or if you want to just build for linux:

```
```bash
$ gox -os="linux"
...
```

Or maybe you just want to build for 64-bit linux:

```
```bash
$ gox -osarch="linux/amd64"
...
```
Expand Down