You are here

public function RoboFile::buildDependencies in Panopoly 7

Builds the profile's .make file to pull in modules, themes and libraries.

1 call to RoboFile::buildDependencies()
RoboFile::buildSite in ./RoboFile.php
Builds a Drupal code base with Panopoly in it at the target path.

File

./RoboFile.php, line 331

Class

RoboFile
This is project's console commands configuration for Robo task runner.

Code

public function buildDependencies() {

  /** @var $this|\Robo\Collection\CollectionBuilder $collection */
  $collection = $this
    ->collectionBuilder();
  $collection
    ->addCode([
    $this,
    'buildDrupalOrgMake',
  ]);
  $collection
    ->taskExec("drush make drupal-org.make -y --no-core --contrib-destination=.");
  return $collection;
}