diff --git a/README.md b/README.md index 18203dec..b40e2e5e 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,8 @@ If you do not export these environment variables, you will be prompted to enter ### Create a New Project Quickstart +EXPERIMENTAL: The build-env:create-project is under development. Backwards compatibility not guarenteed until version 1.3.0. + To create a new project consisting of a GitHub project, a Pantheon site, and Circle CI tests, first set up credentials as shown in the previous section, and then run the `build-env:create-project` command as shown below: ``` terminus build-env:create-project --team="Agency Org Name" d8 example-site diff --git a/src/Commands/BuildToolsCommand.php b/src/Commands/BuildToolsCommand.php index 60ac0b18..41bfeeb8 100644 --- a/src/Commands/BuildToolsCommand.php +++ b/src/Commands/BuildToolsCommand.php @@ -308,7 +308,7 @@ protected function getRequiredCircleToken() protected function siteHasMultidevCapability($site) { // Can our new site create multidevs? - $settings = $this->get('settings'); + $settings = $site->get('settings'); if (!$settings) { return false; }