From 4129ebb64e54f9171cf7c3865cd30ad8b2771145 Mon Sep 17 00:00:00 2001 From: Francisco Madeira Date: Fri, 17 May 2024 16:58:56 +0100 Subject: [PATCH] fix: enforce output when runinng with `--quiet`. (#339) --- src/NewCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index 83b6beb..9b37c1c 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -761,7 +761,7 @@ protected function generateAppUrl($name) protected function getTld() { foreach (['herd', 'valet'] as $tool) { - $process = new Process([$tool, 'tld']); + $process = new Process([$tool, 'tld', '-v']); $process->run(); @@ -793,7 +793,7 @@ protected function canResolveHostname($hostname) protected function isParked(string $directory) { foreach (['herd', 'valet'] as $tool) { - $process = new Process([$tool, 'paths']); + $process = new Process([$tool, 'paths', '-v']); $process->run();