diff --git a/src/mako/cli/output/components/progress/traits/ProgressTrait.php b/src/mako/cli/output/components/progress/traits/ProgressTrait.php index cedb6bdea..3bb71bab7 100644 --- a/src/mako/cli/output/components/progress/traits/ProgressTrait.php +++ b/src/mako/cli/output/components/progress/traits/ProgressTrait.php @@ -40,7 +40,7 @@ protected function buildProgressBar(float $percent): string { $fill = (int) floor($percent * $this->width); - $progress = number_format($percent * 100, 2, '.', ''); + $progress = number_format($percent * 100, 2, '.'); return str_pad($this->progress, strlen($this->itemCount), '0', STR_PAD_LEFT) . "/{$this->itemCount} "