Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Jan 23, 2024
1 parent 070150b commit 0eef889
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion framework/scenario/src/vm_go_tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ pub fn run_mx_scenario_go(absolute_path: &Path) {
"{}",
format!("Warning: `{RUNNER_TOOL_NAME}` not found. Using `{RUNNER_TOOL_NAME_LEGACY}` as fallback.").yellow(),
);
let output = Command::new(RUNNER_TOOL_NAME_LEGACY).arg(absolute_path).output();
let output = Command::new(RUNNER_TOOL_NAME_LEGACY)
.arg(absolute_path)
.output();
if run_scenario_tool(RUNNER_TOOL_NAME_LEGACY, output).is_ok() {
return;
}
Expand Down

0 comments on commit 0eef889

Please sign in to comment.