checkout master, not origin master. Add logging

This commit is contained in:
Daniel Donenfeld 2019-02-15 17:40:12 -08:00
parent bdb9109561
commit cf0d3268f0
2 changed files with 3 additions and 1 deletions

View File

@ -162,6 +162,8 @@ on_finish:
$jobs = $buildData.build.jobs $jobs = $buildData.build.jobs
$lastJob = ($jobs | Select-Object -Last 1) $lastJob = ($jobs | Select-Object -Last 1)
Write-Host "Build : $($buildData.build)"
Write-Host "Jobs:" Write-Host "Jobs:"
$jobs | Foreach-Object { $jobs | Foreach-Object {
Write-Host " - $($_)" Write-Host " - $($_)"

View File

@ -123,7 +123,7 @@ function collectAsm {
#Merge all branches into master #Merge all branches into master
$branchString = $asmBranches -join ' ' $branchString = $asmBranches -join ' '
git checkout origin/master 2>&1 git checkout master 2>&1
git pull git pull
git fetch --all git fetch --all
git branch -a git branch -a