File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 11name : dartdoc
22# Run `grind build` after updating.
33version : 0.29.2
4- author : Dart Team <misc@dartlang.org>
54description : A non-interactive HTML documentation generator for Dart source code.
65homepage : https://github.com/dart-lang/dartdoc
76environment :
Original file line number Diff line number Diff line change @@ -876,12 +876,8 @@ Future<void> checkBuild() async {
876876@Task ('Dry run of publish to pub.dartlang' )
877877@Depends (checkChangelogHasVersion)
878878Future <void > tryPublish () async {
879- if (Platform .version.contains ('dev' )) {
880- log ('Skipping publish check -- requires a stable version of the SDK' );
881- } else {
882- var launcher = SubprocessLauncher ('try-publish' );
883- await launcher.runStreamed (sdkBin ('pub' ), ['publish' , '-n' ]);
884- }
879+ var launcher = SubprocessLauncher ('try-publish' );
880+ await launcher.runStreamed (sdkBin ('pub' ), ['publish' , '-n' ]);
885881}
886882
887883@Task ('Run a smoke test, only' )
You can’t perform that action at this time.
0 commit comments