Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

fix bug with counter not showing up on errs #112

Merged
merged 1 commit into from
Nov 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 + $_ }
}
Write-Host ' ' $message
Expand Down