You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Transforming an existing empty project detects the name of the project and use it as the name of the package instead of . as specified in mariobox::create_mariobox(path = ".")
Problem
Create a new RStudio project with the interface
Run mariobox::create_mariobox(path = ".")
devtools::check() and run_dev.R fail because
"DESCRIPTION" writes Package: .,
and "testthat.R" contains library(.), and test_check(".")
and there is generate_api <- function(... system.file(..., package = "."))
Maybe look at what happens if the project is not empty
The text was updated successfully, but these errors were encountered:
Validation
.
as specified inmariobox::create_mariobox(path = ".")
Problem
Create a new RStudio project with the interface
Run
mariobox::create_mariobox(path = ".")
devtools::check()
andrun_dev.R
fail becausePackage: .
,library(.)
, and test_check(".")generate_api <- function(... system.file(..., package = "."))
Maybe look at what happens if the project is not empty
The text was updated successfully, but these errors were encountered: