Add logging

This commit is contained in:
Daniel Donenfeld 2019-02-26 18:02:03 -08:00
parent adffa26f25
commit 560a596cf8
2 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,7 @@ skip_branch_with_pr: true
platform:
- x86
- x64
# - x64
configuration:
# - Debug

View File

@ -21,6 +21,10 @@ function collectAsm {
#Only merge in asm if there is any change between the current branch and the final asm branch
cmd.exe /c "git diff --quiet origin/$($branchName)..$($asmFinalBranch)"
if(-not $?){
#TEMPORARY LOGGING:
Write-Host "Diffs from $($branchName), cherry-picking into asm final branch $($asmFinalBranch)"
cmd.exe /c "git diff origin/$($branchName)..$($asmFinalBranch)"
# Use cherry-pick as the asm branches only have a single commit
cmd.exe /c "git cherry-pick origin/$($branchName) --allow-empty 2>&1"
if(-not $?){