From 3719fee8a34ccb2c61d9207f31824f2a0d59ffbf Mon Sep 17 00:00:00 2001 From: Gator96100 Date: Fri, 18 Sep 2020 16:47:24 +0200 Subject: [PATCH] Fixed color output --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3a6f783b3..769be4630 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -69,7 +69,8 @@ clone_script: Function WSLExec($Text, $Cmd) { Write-Host "$Text" wsl -- bash -c $Cmd - Write-Host "$Text[ OK ]" -ForegroundColor Green + Write-Host "$Text" -NoNewLine + Write-Host "[ OK ]" -ForegroundColor Green } $WSLInstallTime=[System.Environment]::TickCount