Skip to content

Commit

Permalink
explaining removing plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyokone committed Apr 23, 2024
1 parent 68e1b86 commit 42b0e6e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/flutterfire_cli/lib/src/commands/install.dart
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ class InstallCommand extends FlutterFireCommand {
.toList();

if (pluginsToDelete.isNotEmpty) {
stdout.writeln('The following plugins will be removed:');
for (final plugin in pluginsToDelete) {
stdout.writeln(' - $plugin');
}
final removingSpinner = spinner(
(done) {
if (!done) {
Expand Down

0 comments on commit 42b0e6e

Please sign in to comment.