Skip to content

Commit

Permalink
remove clone in vrl_wasm.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpv committed Mar 15, 2023
1 parent 8944b38 commit 32c00c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vdev/src/commands/generate/vrl_wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Cli {
for crate_name in ["compiler", "core", "diagnostic", "parser"] {
println!("Compiling lib/vrl/{crate_name} to wasm32-unknown-unknown");
std::env::set_current_dir(vrl_path.join(crate_name))?;
app::exec("cargo", args.clone(), false)?;
app::exec("cargo", *args, false)?;
}
Ok(())
}
Expand Down

0 comments on commit 32c00c3

Please sign in to comment.