File tree Expand file tree Collapse file tree 12 files changed +28
-8
lines changed
Expand file tree Collapse file tree 12 files changed +28
-8
lines changed Original file line number Diff line number Diff line change 592592<h2>38.2</h2>
593593<ul>
594594 <li>Fix bug on Windows that prevented outlines from displaying</li>
595- <li>Restore the ability to run individual tests </li>
595+ <li>Restore the ability to run individual tests</li>
596596 <li>Fix a couple other issues</li>
597597</ul>
598598<h2>38.1</h2>
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:io' ;
57
68import 'package:plugin_tool/plugin.dart' as plugin;
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:async' ;
57import 'dart:io' ;
68
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:async' ;
57import 'dart:io' ;
68
Original file line number Diff line number Diff line change 44 * found in the LICENSE file.
55 */
66
7+ // @dart = 2.10
8+
79import 'dart:async' ;
810import 'dart:io' ;
911
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46// Map plugin ID to JetBrains registry ID.
57const Map <String , String > pluginRegistryIds = const {
68 'io.flutter' : '9212' ,
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:async' ;
57import 'dart:io' ;
68
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:async' ;
57import 'dart:convert' ;
68import 'dart:io' ;
@@ -184,7 +186,7 @@ Future<bool> performReleaseChecks(ProductCommand cmd) async {
184186 var gitDir = await GitDir .fromExisting (rootPath);
185187 var isClean = await gitDir.isWorkingTreeClean ();
186188 if (isClean) {
187- var branch = await gitDir.getCurrentBranch ();
189+ var branch = await gitDir.currentBranch ();
188190 var name = branch.branchName;
189191 var expectedName =
190192 cmd.isDevChannel ? 'master' : "release_${cmd .releaseMajor }" ;
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:async' ;
57import 'dart:io' ;
68
Original file line number Diff line number Diff line change 11// Copyright 2017 The Chromium Authors. All rights reserved. Use of this source
22// code is governed by a BSD-style license that can be found in the LICENSE file.
33
4+ // @dart = 2.10
5+
46import 'dart:async' ;
57import 'dart:convert' ;
68import 'dart:io' ;
You can’t perform that action at this time.
0 commit comments