Skip to content

Commit

Permalink
feat: support to build into wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed Sep 29, 2022
1 parent b4aab00 commit e0fd9fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/fluvio-cli/src/client/smdk/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::fmt::Debug;
use std::fs::File;
use std::process::Command;
use std::sync::Arc;

Expand All @@ -24,7 +25,7 @@ impl ClientCmd for BuildSmartModuleOpt {
let mut cmd = Command::new("cargo");
let cwd = std::env::current_dir()?;

cmd.current_dir(cwd)
cmd.current_dir(&cwd)
.arg("build")
.arg("--release")
.arg("--lib");
Expand Down

0 comments on commit e0fd9fd

Please sign in to comment.