We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70ac1f7 commit 83c3b44Copy full SHA for 83c3b44
crates/utils/src/node.rs
@@ -258,8 +258,8 @@ fn run_git_clone(temp_dir: &Path) -> Result<(), MigrateError> {
258
}
259
260
fn run_scarb_build(project_dir: &Path) -> Result<(), MigrateError> {
261
- let output = Command::new("asdf")
262
- .args(["exec", "scarb", "build"])
+ let output = Command::new("scarb")
+ .arg("build")
263
.current_dir(project_dir)
264
.output()
265
.map_err(|e| MigrateError::ScarbBuild(e.to_string()))?;
0 commit comments