Skip to content

Commit 4c4f653

Browse files
committed
wip
1 parent 447d93b commit 4c4f653

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
@@ -306,8 +306,8 @@ fn run_git_clone(temp_dir: &Path) -> Result<(), MigrateError> {
306306
}
307307

308308
fn run_scarb_build(project_dir: &Path) -> Result<(), MigrateError> {
309-
let output = Command::new("asdf")
310-
.args(["exec", "scarb", "build"])
309+
let output = Command::new("scarb")
310+
.arg("build")
311311
.current_dir(project_dir)
312312
.output()
313313
.map_err(|e| MigrateError::ScarbBuild(e.to_string()))?;

0 commit comments

Comments
 (0)