-
Notifications
You must be signed in to change notification settings - Fork 28.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(doctor): add an alternative path for the Dart plugin #163215
Conversation
619d669
to
471dd27
Compare
@jwren can you take a look at this? It seems strange that we'd be seeing lowercase |
This is surprising, the Dart plugin for IntelliJ has always been "Dart", see the bottom of https://plugins.jetbrains.com/plugin/6351-dart. @alexander-dorosko -- any idea why this might be different for some users? |
I don't think that's relevant. For example, the plugin ID for Flutter is "io.flutter", yet the directory containing it is called "flutter-intellij" For additional context, this happened after I wiped my desktop, so after a clean OS install, clean Android Studio install and clean plugin install. I don't know if an update would cause this directory to be renamed, but a clean install sure did create it lowercased. |
Hi @bkonyi, just checking in to see if there are any updates or if anything else is needed from my side to move this forward. Thanks! |
Sorry for the delay! This LGTM if @jwren has no concerns. |
autosubmit label was removed for flutter/flutter/163215, because This PR has not met approval requirements for merging. The PR author is not a member of flutter-hackers and needs 1 more review(s) in order to merge this PR.
|
@jwren this needs a second reviewer. Can I get your rubber stamp? |
It seems like with some recent plugin/IDE version, the path for the Dart plugin has changed from `<base path>/Dart` to `<base path>/dart`, causing `flutter doctor` to incorrectly assume that the plugin is not installed. Add `dart` as an alternative to the existing `Dart` package name. Fixes: flutter#163214
471dd27
to
cf7a2a5
Compare
It seems like with some recent plugin/IDE version, the path for the Dart plugin has changed from
<base path>/Dart
to<base path>/dart
, causingflutter doctor
to incorrectly assume that the plugin is not installed.Add
dart
as an alternative to the existingDart
package name.Fixes #163214.
Pre-launch Checklist
///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.