Let's replace this code
psalm/src/Psalm/Progress/LongProgress.php
public function taskDone(int $level): void
{
...
$this->write(self::doesTerminalSupportUtf8() ? '░' : '_');
...
}
with
to get rid of artifacts on Windows 10/11 once and for all.
before

after

PS. Symbol '░' show in my Windows Terminal when run psalm from source, but show as artifact when run psalm from psalm.phar...
Let's replace this code
with
to get rid of artifacts on Windows 10/11 once and for all.
before


after
PS. Symbol '░' show in my Windows Terminal when run psalm from source, but show as artifact when run psalm from psalm.phar...