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