Skip to content

Commit

Permalink
dont capture script stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhhh committed Jun 25, 2024
1 parent 7e3dcaf commit 02b81cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/unavi-scripting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl StoreState {
pub fn new(name: String) -> (Self, Receiver<WiredGltfAction>) {
let (sender, recv) = crossbeam::channel::bounded(100);

let wasi = WasiCtxBuilder::new().inherit_stdout().build();
let wasi = WasiCtxBuilder::new().build();

(
Self {
Expand Down

0 comments on commit 02b81cf

Please sign in to comment.