From 4a057ac8df3d27f2f7ebafd13b847847a6322417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederic=20G=2E=20=C3=98stby?= Date: Sun, 3 Nov 2024 03:14:39 +0100 Subject: [PATCH] Update ProgressTrait.php --- .../cli/output/components/progress/traits/ProgressTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} "