Skip to content

Commit

Permalink
chore: Adjust is chrome installed? message
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed Jan 16, 2025
1 parent 95bf111 commit a34627e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion R/chrome.R
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,11 @@ print.chromote_info <- function(x, ...) {
cat0("\n---- Chrome ----")

if (is.null(x$path)) {
cat0(" Path: !! Could not find Chrome, see ?find_chrome() !!")
cat0(
" Path: !! ",
wrap("Could not find Chrome, is it installed on this system?", 12)
)
cat0(" !! ", wrap("If yes, see `?find_chrome()` for help.", 12))
return(invisible(x))
}

Expand Down

0 comments on commit a34627e

Please sign in to comment.