Skip to content

Commit

Permalink
Merge pull request #1542 from apotek/patch-2
Browse files Browse the repository at this point in the history
Fix search path handling for top-level drush/ directory
  • Loading branch information
greg-1-anderson committed Aug 12, 2015
2 parents 34f26ff + 87ddee0 commit 7db647e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Drush/Boot/DrupalBoot.php
Expand Up @@ -103,7 +103,7 @@ function commandfile_searchpaths($phase, $phase_max = FALSE) {
switch ($phase) {
case DRUSH_BOOTSTRAP_DRUPAL_ROOT:
$drupal_root = drush_get_context('DRUSH_SELECTED_DRUPAL_ROOT');
$searchpath[] = $drupal_root . '../drush';
$searchpath[] = $drupal_root . '/../drush';
$searchpath[] = $drupal_root . '/drush';
$searchpath[] = $drupal_root . '/sites/all/drush';

Expand Down

0 comments on commit 7db647e

Please sign in to comment.