Skip to content

Commit

Permalink
Progress on #2023. Recognize -dv and -vd in the Drush finder script.
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Mar 16, 2016
1 parent 86b736a commit 659f677
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions includes/startup.inc
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,15 @@ function drush_startup($argv) {
$VAR = "ROOT";
break;

case "-dv":
case "-vd":
case "--debug":
case "-d":
$DEBUG = TRUE;
break;

case "-dv":
case "-vd":
case "--verbose":
case "-v":
$VERBOSE = TRUE;
Expand Down

0 comments on commit 659f677

Please sign in to comment.