Skip to content

Commit 1a35871

Browse files
authored
Fix issue with valet share on Hyper
Related: #790 (comment) Changing from `info()` to just `output()` avoids ANSI char output for color display, and this particular line doesn't "need" colored output particularly.
1 parent 8c74df2 commit 1a35871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/valet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
*/
7878
$app->command('tld [tld]', function ($tld = null) {
7979
if ($tld === null) {
80-
return info(Configuration::read()['tld']);
80+
return output(Configuration::read()['tld']);
8181
}
8282

8383
DnsMasq::updateTld(

0 commit comments

Comments
 (0)