File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
packages/flutter_tools/lib/src Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ import '../runner/flutter_command.dart';
2121import '../update_packages_pins.dart' ;
2222import '../version.dart' ;
2323
24+ // Pub packages are rolled automatically by the flutter-pub-roller-bot
25+ // by using the `flutter update-packages --force-upgrade`.
26+ // For the latest status, see:
27+ // https://github.com/pulls?q=author%3Aflutter-pub-roller-bot
28+
2429class UpdatePackagesCommand extends FlutterCommand {
2530 UpdatePackagesCommand () {
2631 argParser
@@ -32,7 +37,7 @@ class UpdatePackagesCommand extends FlutterCommand {
3237 )
3338 ..addOption (
3439 'cherry-pick-package' ,
35- help: 'Attempt to update only the specified package. The "-cherry-pick-version" version must be specified also.' ,
40+ help: 'Attempt to update only the specified package. The "-- cherry-pick-version" version must be specified also.' ,
3641 )
3742 ..addOption (
3843 'cherry-pick-version' ,
@@ -64,7 +69,7 @@ class UpdatePackagesCommand extends FlutterCommand {
6469 'consumer-only' ,
6570 help: 'Only prints the dependency graph that is the transitive closure '
6671 'that a consumer of the Flutter SDK will observe (when combined '
67- 'with transitive-closure).' ,
72+ 'with "-- transitive-closure" ).' ,
6873 negatable: false ,
6974 )
7075 ..addFlag (
Original file line number Diff line number Diff line change 22// Use of this source code is governed by a BSD-style license that can be
33// found in the LICENSE file.
44
5- // This constant is in its own library so that the test exemption bot knows
5+ // The constant below is in its own library so that the test exemption bot knows
66// that changing a pin does not require a new test. These pins are already
77// tested as part of the analysis shard.
88
9+ // Pub packages are rolled automatically by the flutter-pub-roller-bot.
10+ // For the latest status, see:
11+ // https://github.com/pulls?q=author%3Aflutter-pub-roller-bot
12+
913/// Map from package name to package version, used to artificially pin a pub
1014/// package version in cases when upgrading to the latest breaks Flutter.
1115///
You can’t perform that action at this time.
0 commit comments