From 8621def0cd328d1639befe4727e0687de35a26f7 Mon Sep 17 00:00:00 2001 From: Patrick Decat Date: Tue, 13 Jun 2017 14:04:48 +0200 Subject: [PATCH] Typo: `make bin` => `make build` ``` # make bin make: *** No rule to make target 'bin'. Stop. ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b0a0c20b..7007b35a 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ If you wish to work on the provider, you'll first need [Go](http://www.golang.or To compile the provider, run `make build`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory. ```sh -$ make bin +$ make build ... $ $GOPATH/bin/terraform-provider-google ...