Merge pull request #266 from procrypt/update_README

Update main.go path
This commit is contained in:
Tuna 2016-11-04 21:54:41 +01:00 committed by GitHub
commit 6449dd4830

View File

@ -70,13 +70,13 @@ $ make binary
Or `go build`: Or `go build`:
```console ```console
$ go build -o kompose ./cli/main $ go build -o kompose main.go
``` ```
If you have `go` v1.5, it's still good to build `kompose` with the following settings: If you have `go` v1.5, it's still good to build `kompose` with the following settings:
```console ```console
$ CGO_ENABLED=0 GO15VENDOREXPERIMENT=1 go build -o kompose ./cli/main $ 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 `binary-cross` command via `make`: