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 }