Skip to content

Commit

Permalink
feat: improve error message for unsupported scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Jun 12, 2024
1 parent 7222b4d commit 82b8ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/monset/runner_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl RunnerBlock {
} else if line_trimmed.ends_with(".js") {
Self::exec_script(&line_trimmed, "node")?;
} else {
eprintln!("Script não suportado: {}", line_trimmed);
eprintln!("Unsupported script: {}", line_trimmed);
}
}
}
Expand Down

0 comments on commit 82b8ae3

Please sign in to comment.