From f51d0fb7e5925ed750105edf7f366d846e5b7800 Mon Sep 17 00:00:00 2001 From: Greg Anderson Date: Wed, 26 Jul 2017 12:55:46 -0700 Subject: [PATCH] Move new drush script to 'dr', and restore the 'drush' script to its original form. --- dr | 44 ++++++++++++++++++++++++++++++++++++++++++++ drush | 42 +----------------------------------------- 2 files changed, 45 insertions(+), 41 deletions(-) create mode 100755 dr diff --git a/dr b/dr new file mode 100755 index 0000000000..7ca579ea2f --- /dev/null +++ b/dr @@ -0,0 +1,44 @@ +#!/usr/bin/env php +run($_SERVER['argv']); +exit($status_code); diff --git a/drush b/drush index 7ca579ea2f..5318cb3973 100755 --- a/drush +++ b/drush @@ -1,44 +1,4 @@ #!/usr/bin/env php run($_SERVER['argv']); -exit($status_code); +require __DIR__ . '/drush.php';