Change merge of asm branches into final branch into cherry-pick

This commit is contained in:
Daniel Donenfeld 2019-02-16 21:09:30 -08:00
parent 18dedb4838
commit c53294b92a

View File

@ -18,7 +18,8 @@ function collectAsm {
throw "Missing branch for job $($_.jobId)"
}
cmd.exe /c "git merge $($branchName) 2>&1"
# Use cherry-pick as the asm branches only have a single commit
cmd.exe /c "git cherry-pick $($branchName) 2>&1"
if(-not $?){
throw "Failed merge of $($branchName)"
}