Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upIn Linux it should be installed without failure #84
Conversation
| @@ -206,6 +206,10 @@ phantom_paths <- function() { | |||
| } else if (is_osx()) { | |||
| path <- '~/Library/Application Support' | |||
| path <- if (dir_exists(path)) file.path(path, 'PhantomJS') | |||
| } else if (is_linux()) { | |||
| path <- '~/bin' | |||
| path <- if (!dir_exists(path)) dir.create(path,recursive = TRUE) | |||
wch
Jun 25, 2019
Owner
I think this isn't the right place to create the directory -- this function simply returns a possible path for the executable to go; it should not create the path.
The suggestion in #74 seems like the right way to go.
I think this isn't the right place to create the directory -- this function simply returns a possible path for the executable to go; it should not create the path.
The suggestion in #74 seems like the right way to go.
#74