diff --git a/Cargo.toml b/Cargo.toml index 5246a76..b4a4e4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rdocs" -version = "0.1.37" +version = "0.1.38" edition = "2021" repository = "https://github.com/daniellga/rdocs/" diff --git a/rdocs/DESCRIPTION b/rdocs/DESCRIPTION index 5cbf651..d0325e0 100644 --- a/rdocs/DESCRIPTION +++ b/rdocs/DESCRIPTION @@ -1,6 +1,6 @@ Package: rdocs Title: Create Quarto documentation for R files from comments -Version: 0.1.37 +Version: 0.1.38 Authors@R: person("Daniel", "Gurgel", , "daniellga@gmail.com", role = c("aut", "cre")) Description: Generate R documentation in Quarto format based on comments in code files. diff --git a/src/main.rs b/src/main.rs index a6913c1..5c2465c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -201,7 +201,7 @@ fn eval_examples(examples: Vec) { let output_text = examples.join(";"); let output = Command::new("Rscript") - .args(["--vanilla", "-e", output_text.as_str()]) + .args(["-e", output_text.as_str()]) .stdout(Stdio::null()) .stderr(Stdio::piped()) .output()