Skip to content

Commit

Permalink
chore: add diagnostics to patch call
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzybinary committed Aug 29, 2024
1 parent ecd6214 commit 1fcdf06
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/build_helpers/bin/build_dart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ Future<bool> _patchDartSdk() async {
logger.i("Patching the Dart SDK to create libdart");
var result = await Process.run('git', ['apply', '../../dart_sdk.patch'],
runInShell: true);
logger.d("[patch-stdout] ${result.stdout}");
logger.d("[patch-stderr] ${result.stderr}");
logger.d('Patch result is ${result.exitCode}');
return result.exitCode;
});
Expand Down

0 comments on commit 1fcdf06

Please sign in to comment.