Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dcharkes committed Nov 15, 2023
1 parent 55ec168 commit 249dec7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/ffigen/test/native_objc_test/setup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ Future<void> _generateBindings(String config) async {
final result =
await Process.run(Platform.executable, args, workingDirectory: '../..');
if (result.exitCode != 0) {
stdout.writeln('Process invocation failed with exit code ${esult.exitCode}.')
stdout
.writeln('Process invocation failed with exit code ${esult.exitCode}.');
stdout.write(result.stdout);
stderr.write(result.stderr);
throw ProcessException('dart', args, 'Generating bindings', result);
Expand Down

0 comments on commit 249dec7

Please sign in to comment.