-
Notifications
You must be signed in to change notification settings - Fork 488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel Sail installation in the project fails when using --with=none #492
Comments
Hmm this is a more a feature request. Feel free to send in a PR 👍 |
Well, actually in the code the |
I see. Nevertheless we'd appreciate a PR. |
@driesvints I proposed a fix in a PR but was closed without merge. Any tip on how to solve this ? |
* fix issue #492 php artisan sail:install --with=none not handled properly * Update InstallCommand.php * formatting Co-authored-by: Dries Vints <dries@vints.io> Co-authored-by: Taylor Otwell <taylor@laravel.com>
Description:
in a fresh Laravel project, doing a "php artisan sail:install --with=none" fails when trying to pull empty services
Steps To Reproduce:
Note: when commenting out line 224 of vendor/laravel/sail/src/Console/InstallCommand.php
'./vendor/bin/sail pull '.implode(' ', $services),
thus bypassing the pull phase, everything runs fine.
--with=none
option should be handled properly to allow the setup of Sail with no additional feature.The text was updated successfully, but these errors were encountered: