Closed mrienstra closed 4 years ago
Last week, I have merged a pull request about this. It should be fixed now if you update the plugin itself. Can you update the plugin and try it again?
asdf plugin-update flutter
asdf list all flutter
Will do! Sorry, I think I forgot to attempt that before opening this issue. 🤦
Yup, my bad, I didn't have the latest version. Thanks for the quick response.
Resolved by https://github.com/oae/asdf-flutter/pull/4
When I run
asdf list all flutter
, I see:(truncated, full list: https://gist.github.com/mrienstra/52e68246ecf15ed02e20b137c5a924d4 )
Notably I do not see any of the
1.17.*
or1.18.*
versions, instead I see.17.*
or.18.*
.Comparing to https://flutter.dev/docs/development/tools/sdk/releases?tab=macos#beta-channel-macos :
Looks like the initial
1
is being stripped off. Presumably because Flutter recently changed their version number format -- used to always start with av
, but they dropped thev
as of1.17.0
.https://github.com/oae/asdf-flutter/blob/master/bin/list-all#L17 has
gsub("^v"; "")
but that should only strip the first character if it is av
...