File tree 2 files changed +12
-3
lines changed
packages/flutter_tools/lib/src
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';
21
21
import '../update_packages_pins.dart' ;
22
22
import '../version.dart' ;
23
23
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
+
24
29
class UpdatePackagesCommand extends FlutterCommand {
25
30
UpdatePackagesCommand () {
26
31
argParser
@@ -32,7 +37,7 @@ class UpdatePackagesCommand extends FlutterCommand {
32
37
)
33
38
..addOption (
34
39
'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.' ,
36
41
)
37
42
..addOption (
38
43
'cherry-pick-version' ,
@@ -64,7 +69,7 @@ class UpdatePackagesCommand extends FlutterCommand {
64
69
'consumer-only' ,
65
70
help: 'Only prints the dependency graph that is the transitive closure '
66
71
'that a consumer of the Flutter SDK will observe (when combined '
67
- 'with transitive-closure).' ,
72
+ 'with "-- transitive-closure" ).' ,
68
73
negatable: false ,
69
74
)
70
75
..addFlag (
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style license that can be
3
3
// found in the LICENSE file.
4
4
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
6
6
// that changing a pin does not require a new test. These pins are already
7
7
// tested as part of the analysis shard.
8
8
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
+
9
13
/// Map from package name to package version, used to artificially pin a pub
10
14
/// package version in cases when upgrading to the latest breaks Flutter.
11
15
///
You can’t perform that action at this time.
0 commit comments