Currently, the code to automatically open the CIDAtools project will uses the ~ path expansion, and I am unsure if this works correctly on Windows.
Andrew to verify.
|
rprofile <- paste0(c('if( file.exists(path.expand("~/.Rprofile") ) ){', |
|
'source(path.expand("~/.Rprofile"))', |
|
'}', |
|
'library(CIDATools)', |
|
paste0('CIDATools::open_project(localpath="',path,'")')), |
|
collapse="\n") |
Currently, the code to automatically open the CIDAtools project will uses the
~path expansion, and I am unsure if this works correctly on Windows.Andrew to verify.
CIDAtools/R/project.R
Lines 313 to 318 in e84bb43