Skip to content

Commit

Permalink
fix: enforce output when runinng with --quiet. (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiCO2k authored May 17, 2024
1 parent 5fb6fb6 commit 4129ebb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down

0 comments on commit 4129ebb

Please sign in to comment.