We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aafa512 commit 39fad72Copy full SHA for 39fad72
lib/src/io_utils.dart
@@ -212,7 +212,7 @@ class SubprocessLauncher {
212
int exitCode = await process.exitCode;
213
if (exitCode != 0) {
214
throw new ProcessException(executable, arguments,
215
- "SubprocessLauncher got non-zero exitCode", exitCode);
+ "SubprocessLauncher got non-zero exitCode: $exitCode", exitCode);
216
}
217
return jsonObjects;
218
0 commit comments