Skip to content

Commit

Permalink
Fix typo in siteHasMultidevCapability().
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Mar 11, 2017
1 parent efc0449 commit 766b7e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/BuildToolsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 766b7e9

Please sign in to comment.