Change make configure to make ensure in docs

This commit is contained in:
khyperia 2018-01-10 08:46:04 -08:00
parent 0d0560e9d7
commit 4a76d15055
No known key found for this signature in database
GPG key ID: 1F0C4C4275968713

View file

@ -46,9 +46,9 @@ To build Pulumi, ensure `$GOPATH` is set, and clone into a standard Go workspace
$ git clone git@github.com:pulumi/pulumi $GOPATH/src/github.com/pulumi/pulumi
$ cd $GOPATH/src/github.com/pulumi/pulumi
The first time you build, you must `make configure` to install dependencies and perform other machine setup:
The first time you build, you must `make ensure` to install dependencies and perform other machine setup:
$ make configure
$ make ensure
In the future, you can synch dependencies simply by running `dep ensure` explicitly: