Skip to content

Commit

Permalink
chore: Try to fix windows github action
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzybinary committed Aug 29, 2024
1 parent 05db0f2 commit 19ddf3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/build_helpers/bin/build_dart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ Future<bool> _patchDartSdk() async {
final logger = BuildToolsLogger.shared;
final result = await inDir('dart-sdk/sdk', () async {
logger.i("Patching the Dart SDK to create libdart");
var result = await Process.run('git', ['apply', '../../dart_sdk.patch'],
var result = await Process.run('git',
['apply', '--reject', '--whitespace=fix', '../../dart_sdk.patch'],
runInShell: true);
logger.d("[patch-stdout] ${result.stdout}");
logger.d("[patch-stderr] ${result.stderr}");
Expand Down

0 comments on commit 19ddf3e

Please sign in to comment.