We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On a testing environment if one does
devtools::load_all() system.file('inst/filename', package="packageName", mustWork = TRUE)
devtools::system.file will happily return the file. However this is not the correct syntax.
devtools::system.file
If I do
devtools::install('.') library(pacakgeName) system.file('inst/filename', package="packageName", mustWork = TRUE)
I will get no file found because of the trailing inst.
no file found
inst
The text was updated successfully, but these errors were encountered:
c923564
No branches or pull requests
On a testing environment if one does
devtools::system.file
will happily return the file. However this is not the correct syntax.If I do
I will get
no file found
because of the trailinginst
.The text was updated successfully, but these errors were encountered: