Skip to content
Snippets Groups Projects

Issue #3334879: Static geneation via CLI is broken.

Open cafuego requested to merge issue/tome-3334879:3334879-tome-1.9-breaks-static into 8.x-1.x
3 files
+ 13
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -31,12 +31,21 @@ class CommandBase extends Command {
*/
protected $executable;
/**
* Optional parameters passed to drush.
*
* @var string
* */
protected $parameters;
/**
* {@inheritdoc}
*/
protected function initialize(InputInterface $input, OutputInterface $output) {
$this->io = new SymfonyStyle($input, $output);
$this->executable = $this->findExecutable($input);
$executableAndParams[] = $this->findExecutable($input);
$this->executable = array_shift($executableAndParams);
$this->parameters = $executableAndParams;
}
/**
Loading