Update main.go path

This commit is contained in:
Abhishek 2016-11-03 14:49:24 +05:30
parent a3495b1d6b
commit e5abd3386a

View File

@ -70,13 +70,13 @@ $ make binary
Or `go build`:
```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:
```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`: