Skip to content

Commit

Permalink
AU: 1 updated - graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 24, 2020
1 parent c47b259 commit 81aab38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion automatic/graphviz/graphviz.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"cmake_development": "2.44.2-development",
"cmake_stable": "2.44.1"
"cmake_stable": "2.44.1.20201124"
}
4 changes: 2 additions & 2 deletions automatic/graphviz/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $softwareNamePattern = 'Graphviz*'

[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
$key | % {
$key | ForEach-Object {
$packageArgs = @{
packageName = $packageName
silentArgs = "/x86=0 /S"
Expand All @@ -23,7 +23,7 @@ elseif ($key.Count -gt 1) {
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 | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}

Uninstall-BinFile 'dot.exe'

0 comments on commit 81aab38

Please sign in to comment.