Make sure we refer to 'stable', and not 'release' branch. (#23745)
diff --git a/packages/flutter_tools/lib/src/version.dart b/packages/flutter_tools/lib/src/version.dart index 1262c57..c8a39dc 100644 --- a/packages/flutter_tools/lib/src/version.dart +++ b/packages/flutter_tools/lib/src/version.dart
@@ -47,7 +47,7 @@ 'master', 'dev', 'beta', - 'release', + 'stable', ]); /// This maps old branch names to the names of branches that replaced them. @@ -63,7 +63,7 @@ String _channel; /// The channel is the upstream branch. - /// `master`, `dev`, `beta`, `release`; or old ones, like `alpha`, `hackathon`, ... + /// `master`, `dev`, `beta`, `stable`; or old ones, like `alpha`, `hackathon`, ... String get channel => _channel; /// The name of the local branch.