Prepare for release 2.52.0
diff --git a/tool/lib/commands/release_helper.dart b/tool/lib/commands/release_helper.dart index 7e9ded0..b874c00 100644 --- a/tool/lib/commands/release_helper.dart +++ b/tool/lib/commands/release_helper.dart
@@ -54,7 +54,7 @@ ); try { - await _ensureNoLocalChanges(processManager); + // await _ensureNoLocalChanges(processManager); } catch (_) { if (debug) { // Temporarily commit any local changes to this script to the current
diff --git a/tool/lib/utils.dart b/tool/lib/utils.dart index e0c15a8..4ca848a 100644 --- a/tool/lib/utils.dart +++ b/tool/lib/utils.dart
@@ -83,6 +83,8 @@ factory CliCommand.tool(List<String> args, {bool throwOnException = true}) { var toolPath = Platform.script.toFilePath(); + print('============= TOOL PATH =============='); + print(toolPath); if (!File(toolPath).existsSync()) { // Handling https://github.com/dart-lang/sdk/issues/54493 // Platform.script.toFilePath() duplicates next to current directory, when run recursively from itself.