mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
throw on failed merge
This commit is contained in:
parent
7e72576ace
commit
18dedb4838
@ -19,7 +19,9 @@ function collectAsm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cmd.exe /c "git merge $($branchName) 2>&1"
|
cmd.exe /c "git merge $($branchName) 2>&1"
|
||||||
|
if(-not $?){
|
||||||
|
throw "Failed merge of $($branchName)"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#Merge all branches into master
|
#Merge all branches into master
|
||||||
|
Loading…
Reference in New Issue
Block a user