We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb23919 commit 9963514Copy full SHA for 9963514
1 file changed
src/Commands/ServeCommand.php
@@ -156,10 +156,10 @@ protected function handle()
156
} else {
157
$this->info("\nHappy gardening 🍁\n");
158
159
- if ($this->option('no-env-watch') || !file_exists(getcwd() . DIRECTORY_SEPARATOR . '.env') || !$this->hasInternetConnection()) {
+ if ($this->option('no-env-watch') || $noConcurrent || !file_exists(getcwd() . DIRECTORY_SEPARATOR . '.env') || !$this->hasInternetConnection()) {
160
sprout()->process($this->buildPhpServerCommand())->run();
161
162
- sprout()->process($this->buildWatcherCommand())->run();
+ sprout()->process(trim($this->buildWatcherCommand(), '"'))->run();
163
}
164
165
0 commit comments