function build()

in RoboFile.php [41:55]


  function build($opts = ['publish' => false]) {
    $this->stopOnFail(TRUE);

    $this->getBuildRepo();
    $this->buildSatis();

    $this->taskGitStack()
      ->dir('build')
      ->exec('status')
      ->run();

    if ($opts['publish']) {
      $this->publishChanges();
    }
  }