Skip to content

Commit 16d07e2

Browse files
authored
Merge pull request #38 from RLesur/find_chromium
Search for "chromium" path on Linux
2 parents ba9bffc + dc55512 commit 16d07e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

R/chrome.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ find_chrome <- function() {
4545
if (nchar(path) == 0) {
4646
path <- Sys.which("chromium-browser")
4747
}
48+
if (nchar(path) == 0) {
49+
path <- Sys.which("chromium")
50+
}
4851
if (nchar(path) == 0) {
4952
message("`google-chrome` and `chromium-browser` were not found. Try setting the CHROMOTE_CHROME environment variable or adding one of these executables to your PATH.")
5053
path <- NULL

0 commit comments

Comments
 (0)