From 60ce75715152fbd3b71a6b1ce93388240507f257 Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Mon, 18 May 2015 10:06:32 +0200 Subject: [PATCH] Changed check for drush excecutable This should help with #480... --- completion/available/drush.completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion/available/drush.completion.bash b/completion/available/drush.completion.bash index a65def6f..4f3f784f 100644 --- a/completion/available/drush.completion.bash +++ b/completion/available/drush.completion.bash @@ -7,7 +7,7 @@ # http://github.com/drush-ops/drush/blob/master/drush.complete.sh # Ensure drush is available. -which drush > /dev/null || alias drush &> /dev/null || return +which drush &> /dev/null || alias drush &> /dev/null || return __drush_ps1() { f="${TMPDIR:-/tmp/}/drush-env/drush-drupal-site-$$"