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
you should be able to reproduce the error by installing my package and launching the tutorial twice. the underlying launcher is rmarkdown::run(file = rmds[1]) where rmds is a vector of filenames.
reproduce:
library(devtools)
install_github("ScPoEcon/ScPoEconometrics")
runTutorial("chapter2") # works for me
# kill tutorial
runTutorial("chapter2") # says
> runTutorial("chapter2")
Error in file.exists(dep$src$file) : invalid 'file' argument
6.
file.exists(dep$src$file)
5.
shiny_prerendered_prerender(input_rmd, rendered_html, output_dir,
encoding, prerender_option)
4.
shiny_prerendered_html(input_rmd, encoding, render_args)
3.
shiny_prerendered_app(target_file, encoding = encoding, render_args = render_args)
2.
rmarkdown::run(file = rmds[1]) at runexample.R#29
1.
runTutorial("chapter2")
The text was updated successfully, but these errors were encountered:
i have a recurring issue with
learnr
tutorial that runs as a shiny app. here's the yamlyou should be able to reproduce the error by installing my package and launching the tutorial twice. the underlying launcher is
rmarkdown::run(file = rmds[1])
wherermds
is a vector of filenames.reproduce:
The text was updated successfully, but these errors were encountered: