Commit 2b6dea9 1 parent 6a0f383 commit 2b6dea9 Copy full SHA for 2b6dea9
File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -77,12 +77,11 @@ protected function executeCommandInDrupalVm($command) {
77
77
* The command result.
78
78
*/
79
79
protected function executeDoctorOnHost ($ alias ) {
80
- $ include_dir = $ this ->getConfigValue ('blt.root ' ) . '/drush ' ;
81
80
$ result = $ this ->taskDrush ()
82
81
->drush ("blt-doctor " )
83
82
->alias ($ alias )
84
83
->uri ("" )
85
- ->includePath ($ include_dir )
84
+ ->includePath ($ this -> getConfigValue ( ' blt.root ' ) . ' /drush ' )
86
85
->run ();
87
86
88
87
return $ result ;
Original file line number Diff line number Diff line change 28
28
# `../vendor/bin/drush.launcher --local $@` is a common variant for
29
29
# composer-managed Drupal sites.
30
30
#
31
- DIR=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd )
31
+ DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
32
32
cd " ` dirname $0 ` "
33
33
34
- if [ ! -f ${DIR} /vendor/drush/drush/drush.launcher ]; then
34
+ if [ ! -f " ${DIR} /vendor/drush/drush/drush.launcher" ]; then
35
35
echo >&2 " Drush was not found in this project's vendor directory. You can install it by typing:"
36
36
echo >&2 " composer install"
37
37
exit 1
38
38
fi
39
39
40
- vendor/drush/drush/drush.launcher --config=${DIR} /drush/drushrc.php --alias-path=${DIR} /drush/site-aliases " $@ "
40
+ vendor/drush/drush/drush.launcher --config=" ${DIR} /drush/drushrc.php" --alias-path=" ${DIR} /drush/site-aliases" " $@ "
You can’t perform that action at this time.
0 commit comments