Skip to content

Commit 83c3b44

Browse files
committed
wip
1 parent 70ac1f7 commit 83c3b44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/utils/src/node.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ fn run_git_clone(temp_dir: &Path) -> Result<(), MigrateError> {
258258
}
259259

260260
fn run_scarb_build(project_dir: &Path) -> Result<(), MigrateError> {
261-
let output = Command::new("asdf")
262-
.args(["exec", "scarb", "build"])
261+
let output = Command::new("scarb")
262+
.arg("build")
263263
.current_dir(project_dir)
264264
.output()
265265
.map_err(|e| MigrateError::ScarbBuild(e.to_string()))?;

0 commit comments

Comments
 (0)