runExecutableArgumentsSync method
Run a single executable with arguments, resolving the executable if needed.
Returns a process result (or throw if specified in the shell).
onProcess is called for each started process.
Implementation
@override
ProcessResult runExecutableArgumentsSync(
String executable,
List<String> arguments,
) {
var runId = ++_runId;
return (_runCommandSync(
runId,
ShellCommand(executable, arguments),
)).processResult;
}