Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
* stable:
  (maint) Specify mono version for Travis-CI
  (chocolateyGH-366) Add uninstaller keys back in
  • Loading branch information
ferventcoder committed Jul 30, 2015
2 parents ebf1f31 + d8943f2 commit 459a288
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
language: csharp
mono:
- 3.12.0
install:
- sudo apt-get install mono-devel mono-gmcs
- nuget restore src/chocolatey.sln
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ public class ChocolateyUninstallTemplate
}
$uninstalled = $false
$local_key = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*'
$machine_key = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*'
$machine_key6432 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*'
Get-ItemProperty -Path @($machine_key6432,$machine_key, $local_key) `
-ErrorAction SilentlyContinue `
Expand Down

0 comments on commit 459a288

Please sign in to comment.