From 127820d97114e736cf3756f730c79c0c105e92ee Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 20 Jan 2025 17:20:20 -0700 Subject: [PATCH] Disable analytics as part of the report. --- tasks/workstation/linux/software/flutter.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tasks/workstation/linux/software/flutter.yml b/tasks/workstation/linux/software/flutter.yml index bb99d70..8a76796 100644 --- a/tasks/workstation/linux/software/flutter.yml +++ b/tasks/workstation/linux/software/flutter.yml @@ -131,12 +131,18 @@ ignore_errors: yes when: coding == true and user_root.home != "" and user_user.home != "" +## Disable Analytics ## + +flutter --disable-analytics + ## Test SDK ## - name: Workstation | Linux | Software | Flutter | Doctor Report shell: "{{ item }}" loop: - "date > {{ flutter_report }}" + - "{{ flutter_bin_location }}/flutter --disable-analytics >> {{ flutter_report }}" + - "date >> {{ flutter_report }}" - "{{ flutter_bin_location }}/flutter doctor -v >> {{ flutter_report }}" - "date >> {{ flutter_report }}" when: coding == true