From d31f501620a8217f0f1e17eb37ef37f4b622ee7c Mon Sep 17 00:00:00 2001 From: daniellga Date: Thu, 2 May 2024 14:22:51 -0300 Subject: [PATCH] removed vanilla --- Cargo.toml | 2 +- rdocs/DESCRIPTION | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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()