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
I've to make additional researches for this bug, in general under windows everything that is rewriting the line goes to a new line. I don't have much time in the last period.
With this fix I've fixed only the progressbar but also spinner and dots have the same issue.
I think that was a problem with the fact that windows move the pointer to the new line when it reach the last character of the line instead of keeping the same line.
The progressbar instead of updating the current row print a new row with the updated values.
To fix this I've found that can be esily fixed by changing into Bar.php line 58 from
$size = Shell::columns();
to
$size = Shell::columns() - 1;
If it was ok as I fix I can also make a pull request for it.
Currently I've not tested it under others OS.
The text was updated successfully, but these errors were encountered: