Skip to content

Commit

Permalink
fixes issue for locating newly installed chrome versions
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Inman-Semerau <luke.semerau@gmail.com>
  • Loading branch information
ddavison authored and lukeis committed May 8, 2014
1 parent 0da4a96 commit 1f5e30c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ protected String[] usualLauncherLocations() {
*/
protected String[] usualWindowsLauncherLocations() {
return new String[] {
WindowsUtils.getLocalAppDataPath() + "\\Google\\Chrome\\Application"
WindowsUtils.getLocalAppDataPath() + "\\Google\\Chrome\\Application",
WindowsUtils.getProgramFiles86Path() + "\\Google\\Chrome\\Application",
WindowsUtils.getProgramFilesPath() + "\\Google\\Chrome\\Application"
};
}

Expand Down

0 comments on commit 1f5e30c

Please sign in to comment.