Skip to content

Commit af220c2

Browse files
committed
Prettify build output
1 parent 05d55d7 commit af220c2

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

appveyor.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,14 @@ matrix:
2626

2727
install:
2828
- ps: |
29-
Write-Host "Commit being built = $Env:APPVEYOR_REPO_COMMIT"
30-
Write-Host "Current build version = $Env:VERSION"
31-
Write-Host "Target branch = $Env:APPVEYOR_REPO_BRANCH"
32-
Write-Host "Is a Pull Request = $($Env:APPVEYOR_PULL_REQUEST_NUMBER -ne $null)"
29+
Write-Host "Commit being built = " -NoNewLine
30+
Write-Host $Env:APPVEYOR_REPO_COMMIT -ForegroundColor "Green"
31+
Write-Host "Current build version = " -NoNewLine
32+
Write-Host $Env:VERSION -ForegroundColor "Green"
33+
Write-Host "Target branch = " -NoNewLine
34+
Write-Host $Env:APPVEYOR_REPO_BRANCH -ForegroundColor "Green"
35+
Write-Host "Is a Pull Request = " -NoNewLine
36+
Write-Host $($Env:APPVEYOR_PULL_REQUEST_NUMBER -ne $null) -ForegroundColor "Green"
3337
3438
$BuildDate = (Get-Date).ToUniversalTime().ToString("yyyyMMddHHmmss")
3539
Write-Host "Build UTC date = $BuildDate"

0 commit comments

Comments
 (0)