From b011fa30b892616f03b0d4da5b288ffa1ccd0482 Mon Sep 17 00:00:00 2001 From: Tomasz Kostrzewa Date: Wed, 6 Mar 2024 18:45:49 +0100 Subject: [PATCH] modified: RdzeN-Profile.ps1 --- RdzeN-Profile.ps1 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/RdzeN-Profile.ps1 b/RdzeN-Profile.ps1 index c7b95ea..dc1dd2f 100644 --- a/RdzeN-Profile.ps1 +++ b/RdzeN-Profile.ps1 @@ -47,8 +47,13 @@ function Pull-Repository { } if ($git_tmp -match "(Your branch is up to date)") { - Write-Host "$git_tmp" -ForegroundColor Green + $git_tmp | ForEach-Object { + Write-Host $_ -ForegroundColor Green + } } else { + $git_tmp | ForEach-Object { + Write-Host $_ -ForegroundColor Red + } Pull-Repository }