Autogenerated commit at 2026-01-05 14:13:57.838168+00:00

This commit is contained in:
ahriman
2026-01-05 14:13:57 +00:00
parent 1ba8ce4e66
commit d932a5b988
12 changed files with 1494 additions and 0 deletions

18
flutter/doctor.patch Normal file
View File

@@ -0,0 +1,18 @@
--- a/packages/flutter_tools/lib/src/doctor.dart
+++ b/packages/flutter_tools/lib/src/doctor.dart
@@ -703,15 +703,6 @@
'$flutterBinDir to your path.',
);
}
- final String resolvedFlutterPath = flutterBin.resolveSymbolicLinksSync();
- if (!_filePathContainsDirPath(flutterRoot, resolvedFlutterPath)) {
- final hint =
- 'Warning: `$binary` on your path resolves to '
- '$resolvedFlutterPath, which is not inside your current Flutter '
- 'SDK checkout at $flutterRoot. Consider adding $flutterBinDir to '
- 'the front of your path.';
- return ValidationMessage.hint(hint);
- }
return null;
}