Allow empty with git-cherry-pick

This commit is contained in:
Daniel Donenfeld 2019-02-16 21:46:29 -08:00
parent 54cf763ab1
commit bcd7b60df7

View File

@ -19,7 +19,7 @@ function collectAsm {
}
# Use cherry-pick as the asm branches only have a single commit
cmd.exe /c "git cherry-pick origin/$($branchName) 2>&1"
cmd.exe /c "git cherry-pick origin/$($branchName) --allow-empty 2>&1"
if(-not $?){
throw "Failed merge of $($branchName)"
}