Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / src / Commands / generate / GenerateCommands.php
index 6e7a32b9f1fcc3f3a292e07ab2d018acdb0a76d2..6027143bca41394edbbe02098c5dcfa53775814c 100644 (file)
@@ -71,6 +71,12 @@ class GenerateCommands extends DrushCommands
                 '--answers=' . escapeshellarg($options['answers']),
                 '--directory=' . $options['directory']
             ];
+            if ($options['ansi']) {
+                $argv[] = '--ansi';
+            }
+            if ($options['no-ansi']) {
+                $argv[] = '--no-ansi';
+            }
             return $application->run(new StringInput(implode(' ', $argv)));
         }
     }