You are here

public function RoboFile::checkMakefile in Panopoly 7

Checks if the .make file for Drupal.org compatibility.

File

./RoboFile.php, line 218

Class

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

Code

public function checkMakefile() {
  $process = $this
    ->runDrush("verify-makefile drupal-org.make");
  return $process
    ->getExitCode();
}