@ -57,9 +57,4 @@ At this point, the new field is available via Boundary's API. All that's left i
* Incorporate the new fields to the command's `funcs.go`. Just a suggestion here: you may want to define a const for the new field name and reuse it everywhere it's required (which is several places)
* Run `make cli` and `make dev`, before attempting to test cli changes
* Run `make cli` and `make install`, before attempting to test cli changes
The first time you run `make dev` it will build UI assets, which will take a
The first time you run `make install` it will build UI assets, which will take a
long time. After the initial build, you can update those assets to the
currently-pinned version via `make build-ui`.
@ -28,7 +28,7 @@ binary to somewhere in your `$PATH` such as `/usr/local/bin`.
## Cross Platform Build
If you need to cross compile boundary for another OS or architecture, use the [GOOS and GOARCH](https://github.com/hashicorp/boundary/blob/master/scripts/build.sh#L26)
environment variable to set this. Example: `$ GOOS=linux GOARCH=amd64 make dev`
environment variable to set this. Example: `$ GOOS=linux GOARCH=amd64 make install`
For more details, please consult the [Boundary project on GitHub](https://github.com/hashicorp/boundary#build-and-start-boundary-in-dev-mode).