From d3c4645a420c02a19421cf1b7aa9eb42fd08b666 Mon Sep 17 00:00:00 2001 From: Brett Morgan Date: Tue, 13 Jul 2021 03:08:10 +1000 Subject: [PATCH] `flutter analyze` -> `dart analyze` (#849) --- tool/flutter_ci_script_shared.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/flutter_ci_script_shared.sh b/tool/flutter_ci_script_shared.sh index 71a680842..dfa905d3c 100644 --- a/tool/flutter_ci_script_shared.sh +++ b/tool/flutter_ci_script_shared.sh @@ -12,7 +12,7 @@ function ci_projects () { flutter pub get # Run the analyzer to find any static analysis issues. - flutter analyze + dart analyze # Run the formatter on all the dart files to make sure everything's linted. dart format --output none --set-exit-if-changed .