Skip to content

Commit 4129ebb

Browse files
authored
fix: enforce output when runinng with --quiet. (#339)
1 parent 5fb6fb6 commit 4129ebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NewCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ protected function generateAppUrl($name)
761761
protected function getTld()
762762
{
763763
foreach (['herd', 'valet'] as $tool) {
764-
$process = new Process([$tool, 'tld']);
764+
$process = new Process([$tool, 'tld', '-v']);
765765

766766
$process->run();
767767

@@ -793,7 +793,7 @@ protected function canResolveHostname($hostname)
793793
protected function isParked(string $directory)
794794
{
795795
foreach (['herd', 'valet'] as $tool) {
796-
$process = new Process([$tool, 'paths']);
796+
$process = new Process([$tool, 'paths', '-v']);
797797

798798
$process->run();
799799

0 commit comments

Comments
 (0)