Add upgrade command (#50)

Added flutter upgrade command.

## Related issues
- https://github.com/sony/flutter-elinux/issues/46
This commit is contained in:
Hidenori Matsubayashi
2021-08-26 14:50:14 +09:00
committed by GitHub
parent 0d32523ec9
commit 13d148c198
2 changed files with 289 additions and 0 deletions
+2
View File
@@ -43,6 +43,7 @@ import 'commands/packages.dart';
import 'commands/precache.dart';
import 'commands/run.dart';
import 'commands/test.dart';
import 'commands/upgrade.dart';
import 'elinux_cache.dart';
import 'elinux_device_discovery.dart';
import 'elinux_doctor.dart';
@@ -94,6 +95,7 @@ Future<void> main(List<String> args) async {
LogsCommand(),
ScreenshotCommand(),
SymbolizeCommand(stdio: globals.stdio, fileSystem: globals.fs),
ELinuxUpgradeCommand(verboseHelp: verboseHelp),
// Commands extended for ELinux.
ELinuxAnalyzeCommand(verboseHelp: verboseHelp),
ELinuxAttachCommand(verboseHelp: verboseHelp),