Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
* stable:
  (GH-1304) Wrapping HashTable calls inside parenthesis
  • Loading branch information
ferventcoder committed May 30, 2017
2 parents 5feec3d + 326a8ae commit 43fea49
Showing 1 changed file with 2 additions and 2 deletions.
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 43fea49

Please sign in to comment.