Skip to content

Commit

Permalink
Merge pull request #14 from ink0rr/dev
Browse files Browse the repository at this point in the history
rgl v0.4.1
  • Loading branch information
ink0rr authored Nov 24, 2023
2 parents fae65b6 + 7a86955 commit 75a7f9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rgl"
version = "0.4.0"
version = "0.4.1"
edition = "2021"

[[bin]]
Expand Down
3 changes: 2 additions & 1 deletion src/rgl/filter_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ pub struct FilterNode {

impl Filter for FilterNode {
fn run(&self, context: &FilterContext, temp: &Path, run_args: &[String]) -> Result<()> {
let script = context.dir.join(&self.script);
Subprocess::new("node")
.arg(&self.script)
.arg(script)
.args(run_args)
.current_dir(temp)
.setup_env(&context.dir)?
Expand Down

0 comments on commit 75a7f9c

Please sign in to comment.