Merge pull request #302 from cdrage/switch-to-make-bin

Switch to 'make bin' instead of 'make binary'
This commit is contained in:
sebgoa
2016-11-30 15:54:08 +01:00
committed by GitHub
3 changed files with 23 additions and 8 deletions
+3 -3
View File
@@ -72,7 +72,7 @@ $ PROG=kompose source script/bash_autocomplete
You can either build via the Makefile:
```console
$ make binary
$ make bin
```
Or `go build`:
@@ -87,10 +87,10 @@ If you have `go` v1.5, it's still good to build `kompose` with the following set
$ CGO_ENABLED=0 GO15VENDOREXPERIMENT=1 go build -o kompose main.go
```
To create a multi-platform binary, use the `binary-cross` command via `make`:
To create a multi-platform binary, use the `cross` command via `make`:
```console
$ make binary-cross
$ make cross
```
## Contributing and Issues