From 9f999c13d47ced1c42f1951d0dc405033228e295 Mon Sep 17 00:00:00 2001 From: Nicholas Beydler Date: Thu, 17 Oct 2024 18:12:04 -1000 Subject: [PATCH] i #308 Fixed Relative Paths in a Notebook - The project configuration sections of a notebook was incorrectly using the project directory (kaiaulu/) as its working directory rather than the directory that it resides in (/vignettes/) as its working directory. --- vignettes/understand_showcase.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/understand_showcase.Rmd b/vignettes/understand_showcase.Rmd index f6a4b769..fb6cc476 100644 --- a/vignettes/understand_showcase.Rmd +++ b/vignettes/understand_showcase.Rmd @@ -39,7 +39,7 @@ For our variables we will be grabbing them from our configuration file kaiaulu.y - And our code_language. Although self-explanatory, Understand supports [many languages](https://support.scitools.com/support/solutions/articles/70000582794-supported-languages)- but for today we will be analyzing a Java project. ```{r} -conf <- parse_config("conf/kaiaulu.yml") +conf <- parse_config("../conf/kaiaulu.yml") keep_dependencies_type <- get_understand_keep_dependencies_type(conf) project_path <- get_understand_project_path(conf) understand_folder <- get_understand_output_path(conf)