Skip to content

Commit

Permalink
removed vanilla
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed May 2, 2024
1 parent 5377169 commit d31f501
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rdocs"
version = "0.1.37"
version = "0.1.38"
edition = "2021"
repository = "https:/daniellga/rdocs/"

Expand Down
2 changes: 1 addition & 1 deletion rdocs/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = c("aut", "cre"))
Description: Generate R documentation in Quarto format based on comments in code files.
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ fn eval_examples(examples: Vec<String>) {
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()
Expand Down

0 comments on commit d31f501

Please sign in to comment.