Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / robo / robo
index 166b9ca75187ce873726be540c65f62e48af299c..e6137a059729944d9ceebf0110dc66ba22a630b5 100755 (executable)
@@ -15,10 +15,13 @@ if (!strpos(basename(__FILE__), 'phar')) {
     }
 }
 $classLoader = require $autoloaderPath;
+$configFilePath = getenv('ROBO_CONFIG') ?: getenv('HOME') . '/.robo/robo.yml';
 $runner = new \Robo\Runner();
 $runner
   ->setRelativePluginNamespace('Robo\Plugin')
   ->setSelfUpdateRepository('consolidation/robo')
+  ->setConfigurationFilename($configFilePath)
+  ->setEnvConfigPrefix('ROBO')
   ->setClassLoader($classLoader);
 $statusCode = $runner->execute($_SERVER['argv']);
-exit($statusCode);
\ No newline at end of file
+exit($statusCode);