Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / unish.clean.php
diff --git a/vendor/drush/drush/unish.clean.php b/vendor/drush/drush/unish.clean.php
deleted file mode 100755 (executable)
index 7ec7174..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env php
-<?php
-
-/**
- * This script:
- *   - Builds the site-Under-Test
- *   - Runs phpunit.
- *
- * Supported arguments and options are the same as `phpunit`.
- */
-
-$cmd = __DIR__ . '/unish.sut.php';
-fwrite(STDERR, 'Executing: ' . $cmd . "\n");
-passthru($cmd, $return);
-if ($return) exit($return);
-
-// Get the arguments for the command.
-$arguments = $GLOBALS['argv'];
-// Shift off argv[0] which contains the name of this script.
-array_shift($arguments);
-$cmd = __DIR__ . '/unish.phpunit.php ' . implode(' ', $arguments);
-fwrite(STDERR, 'Executing: ' . $cmd . "\n");
-passthru($cmd, $return);
-if ($return) exit($return);