Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvillage committed Oct 23, 2024
1 parent 0a67553 commit 1dc686b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ impl File {
std::process::Command::new("Rscript")
.arg("-e")
.arg(format!(
"devtools::load_all('../lmutils.r');lmutils::internal_lmutils_file_into_fd('{}', {})",
"lmutils::internal_lmutils_file_into_fd('{}', {})",
self.path.to_string_lossy(),
p2,
))
.stdout(std::process::Stdio::inherit())
.stdout(std::process::Stdio::piped())
.stderr(std::process::Stdio::piped())
.pre_exec(move || unsafe {
cfg_if!(if #[cfg(libc_2_27)] {
Expand Down

0 comments on commit 1dc686b

Please sign in to comment.