32 lines
1.5 KiB
Diff
32 lines
1.5 KiB
Diff
diff --git a/bin/flutter b/bin/flutter
|
|
index 3955f8f39..1e7573d30 100755
|
|
--- a/bin/flutter
|
|
+++ b/bin/flutter
|
|
@@ -185,8 +185,6 @@ fi
|
|
# FLUTTER_TOOL_ARGS="--enable-asserts $FLUTTER_TOOL_ARGS"
|
|
# FLUTTER_TOOL_ARGS="$FLUTTER_TOOL_ARGS --observe=65432"
|
|
|
|
-(upgrade_flutter) 3< "$PROG_NAME"
|
|
-
|
|
# FLUTTER_TOOL_ARGS isn't quoted below, because it is meant to be considered as
|
|
# separate space-separated args.
|
|
"$DART" --packages="$FLUTTER_TOOLS_DIR/.packages" $FLUTTER_TOOL_ARGS "$SNAPSHOT_PATH" "$@"
|
|
diff --git a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart
|
|
index 5e45819d9..ab748b059 100644
|
|
--- a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart
|
|
+++ b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart
|
|
@@ -377,13 +377,6 @@ class FlutterCommandRunner extends CommandRunner<void> {
|
|
}
|
|
|
|
_checkFlutterCopy();
|
|
- try {
|
|
- await FlutterVersion.instance.ensureVersionFile();
|
|
- } on FileSystemException catch (e) {
|
|
- printError('Failed to write the version file to the artifact cache: "$e".');
|
|
- printError('Please ensure you have permissions in the artifact cache directory.');
|
|
- throwToolExit('Failed to write the version file');
|
|
- }
|
|
if (topLevelResults.command?.name != 'upgrade' && topLevelResults['version-check'] as bool) {
|
|
await FlutterVersion.instance.checkFlutterVersionFreshness();
|
|
}
|