File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,14 @@ matrix:
26
26
27
27
install :
28
28
- 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"
33
37
34
38
$BuildDate = (Get-Date).ToUniversalTime().ToString("yyyyMMddHHmmss")
35
39
Write-Host "Build UTC date = $BuildDate"
You can’t perform that action at this time.
0 commit comments