You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows (either CMD or PowerShell) you get extraneous output:
'tput' is not recognized as an internal or external command, operable program or batch file
It comes from \splitbrain\phpcli\TableFormatter::__construct():
$width = @exec('tput cols');
When the tput command is not available the shell prints an error message on stderr and it's apparently transmitted to the shell where you run the PHP script. (Apparently bash is also subject to this but it isn't an issue because ncurses is normally installed.)
The text was updated successfully, but these errors were encountered:
On Windows (either CMD or PowerShell) you get extraneous output:
It comes from
\splitbrain\phpcli\TableFormatter::__construct()
:When the
tput
command is not available the shell prints an error message on stderr and it's apparently transmitted to the shell where you run the PHP script. (Apparently bash is also subject to this but it isn't an issue because ncurses is normally installed.)The text was updated successfully, but these errors were encountered: