mirror of
https://github.com/laravel/valet.git
synced 2026-02-04 08:10:07 +01:00
Fix issue with valet share on Hyper
Related: https://github.com/laravel/valet/issues/790#issuecomment-765559963 Changing from `info()` to just `output()` avoids ANSI char output for color display, and this particular line doesn't "need" colored output particularly.
This commit is contained in:
@@ -77,7 +77,7 @@
|
||||
*/
|
||||
$app->command('tld [tld]', function ($tld = null) {
|
||||
if ($tld === null) {
|
||||
return info(Configuration::read()['tld']);
|
||||
return output(Configuration::read()['tld']);
|
||||
}
|
||||
|
||||
DnsMasq::updateTld(
|
||||
|
||||
Reference in New Issue
Block a user