Skip to content

Commit

Permalink
Add: path_candidates for Gentoo Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
yegle committed Dec 1, 2013
1 parent 371a63d commit 1f5c034
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/lantern/ChromeRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ private String determineExecutablePath() {
path_candidates.add("/usr/bin/google-chrome-unstable");
path_candidates.add("/usr/bin/chromium");
path_candidates.add("/usr/bin/chromium-browser");
path_candidates.add("/usr/bin/google-chrome-beta");
for (String path: path_candidates) {
final File opt = new File(path);
if (opt.isFile() && opt.canExecute()) return path;
Expand Down

0 comments on commit 1f5c034

Please sign in to comment.