-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Reland fix --version
#52141
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
Reland fix --version
#52141
Conversation
jonahwilliams
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Is this going to affect the version reported in analytics and crash logging? |
|
This only affects flutter doctor and flutter --version |
|
Grepping for |
|
build_ios_frameworks is using it to check if you're on dev/beta/stable - there's probably some situation where you could get messed up if your tags were really out of date, so it's probably worth fetching them there. upgrade seems like it would benefit from this as well. I didn't really think of it because I don't really ever use that command. |
|
Opened #52250 to apply this logic to those two commands. |
Relands #52062
This restricts the tag fetching to only
flutter doctoror flutter commands where the user explicitly asks for the--version, so should not regress performance of other commands likeflutter analyzeorflutter runetc..Fixes #15529 again