Skip to content

Commit

Permalink
Merge pull request majkinetor#112 from rismoney/countermissingerrs
Browse files Browse the repository at this point in the history
fix bug with counter not showing up on errs
  • Loading branch information
majkinetor authored Nov 9, 2017
2 parents 718c19c + b40596a commit b24c332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AU/Public/Update-AUPackages.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function Update-AUPackages {
$message += if (!$pkg.Pushed) { ' but push failed!' } else { ' and pushed'}
}
if ($pkg.Error) {
$message = "$($pkg.Name) ERROR: "
$message = "[$($p)/$($aup.length)] $($pkg.Name) ERROR: "
$message += $pkg.Error.ToString() -split "`n" | % { "`n" + ' '*5 + $_ }
}
$message+= " ({0:N2}s)" -f $jobseconds
Expand Down

0 comments on commit b24c332

Please sign in to comment.