Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
fix(deno-embed): build script (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Sep 18, 2024
1 parent d02038d commit c2b347d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/deno-embed/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ mod tests {
);

// Run deno --version and check the output
let output = Command::new(&result1.executable_path)
let output = std::process::Command::new(&result1.executable_path)
.arg("--version")
.output()?;

Expand Down

0 comments on commit c2b347d

Please sign in to comment.