-
Notifications
You must be signed in to change notification settings - Fork 276
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
NewCommand does not check for herd valet existence #342
Labels
Comments
cc @xiCO2k: could you maybe send a fix for this one? |
Additional info: |
I re-ran the command with very verbose output, yielding
Looking at Process.php:371 a // ...
if (!\is_resource($process)) {
throw new ProcessStartFailedException($this, $lastError);
}
// ... |
On it |
PR: #343 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installer Version
5.8.1
Description
620f1b3 introduced automatic inference of TLD in case either herd or valet is present on the host machine.
However this method does not check for existence of those tools first, causing the following error to be thrown when generating a new laravel application:
Not only is this bad UX but most improtantly this causes
laravel new
to exit with a non-zero code. This may break scripts created by user automating project scaffolding.Steps To Reproduce
laravel new foo
The text was updated successfully, but these errors were encountered: