We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 447d93b commit 4c4f653Copy full SHA for 4c4f653
crates/utils/src/node.rs
@@ -306,8 +306,8 @@ fn run_git_clone(temp_dir: &Path) -> Result<(), MigrateError> {
306
}
307
308
fn run_scarb_build(project_dir: &Path) -> Result<(), MigrateError> {
309
- let output = Command::new("asdf")
310
- .args(["exec", "scarb", "build"])
+ let output = Command::new("scarb")
+ .arg("build")
311
.current_dir(project_dir)
312
.output()
313
.map_err(|e| MigrateError::ScarbBuild(e.to_string()))?;
0 commit comments