mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
5777f1a122
Flutter 3.5.0 adds a check to make sure that the Flutter and Dart tool executables are inside the SDK directory. This does not play nicely with the wrapping and linking techniques used to package it. It is also impossible for there to be an issue related to binary locations, as everything is set up properly in the derivation.
13 lines
686 B
Diff
13 lines
686 B
Diff
diff --git a/packages/flutter_tools/lib/src/doctor.dart b/packages/flutter_tools/lib/src/doctor.dart
|
|
index 651dc6cf36..236eb370e1 100644
|
|
--- a/packages/flutter_tools/lib/src/doctor.dart
|
|
+++ b/packages/flutter_tools/lib/src/doctor.dart
|
|
@@ -515,7 +515,6 @@ class FlutterValidator extends DoctorValidator {
|
|
final String flutterRoot = _flutterRoot();
|
|
messages.add(_getFlutterVersionMessage(frameworkVersion, versionChannel, flutterRoot));
|
|
|
|
- _validateRequiredBinaries(flutterRoot).forEach(messages.add);
|
|
messages.add(_getFlutterUpstreamMessage(version));
|
|
if (gitUrl != null) {
|
|
messages.add(ValidationMessage(_userMessages.flutterGitUrl(gitUrl)));
|