Skip to content

Commit

Permalink
Merge branch 'pr1305' into stable
Browse files Browse the repository at this point in the history
* pr1305:
  (GH-1304) Wrapping HashTable calls inside parenthesis
  • Loading branch information
ferventcoder committed May 30, 2017
2 parents 272109d + 12a697b commit 326a8ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public class ChocolateyUninstallTemplate
} elseif ($key.Count -eq 0) {
Write-Warning ""$packageName has already been uninstalled by other means.""
} elseif ($key.Count -gt 1) {
Write-Warning ""$key.Count matches found!""
Write-Warning ""$($key.Count) matches found!""
Write-Warning ""To prevent accidental data loss, no programs will be uninstalled.""
Write-Warning ""Please alert package maintainer the following keys were matched:""
$key | % {Write-Warning ""- $_.DisplayName""}
$key | % {Write-Warning ""- $($_.DisplayName)""}
}
Expand Down

0 comments on commit 326a8ae

Please sign in to comment.