Skip to content
This repository was archived by the owner on Apr 17, 2024. It is now read-only.

Commit a8cd75b

Browse files
author
Mateu Aguiló Bosch
committed
fix(installer): use local drush installation
1 parent fd50149 commit a8cd75b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

installer.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ if echo "$install_path" ;then
2828
composer run-script install:with-sqlite $install_path --timeout=0 --working-dir $install_path
2929

3030
# Start the built-in PHP server.
31-
$DRUSH --root=$install_path/web user-login --no-browser --uri="http://127.0.0.1:8888"
32-
$DRUSH --root=$install_path/web runserver 127.0.0.1:8888
31+
cd $install_path/web user-login
32+
drush user-login --no-browser --uri="http://127.0.0.1:8888"
33+
drush runserver 127.0.0.1:8888
3334
cd $original_wd
3435
else
3536
echo -e "\nBye!"

0 commit comments

Comments
 (0)