diff --git a/tasks/workstation/linux/software/flutter.yml b/tasks/workstation/linux/software/flutter.yml index c4ddf0d..bd722f8 100644 --- a/tasks/workstation/linux/software/flutter.yml +++ b/tasks/workstation/linux/software/flutter.yml @@ -121,12 +121,14 @@ group: "{{ user }}" become_user: "{{ user }}" - when: coding == true and not flutter_sdk_stat.stat.exists + when: coding == true + and not flutter_sdk_stat.stat.exists - name: Workstation | Linux | Software | Flutter | Delete Archive file: path: "{{ flutter_download_file }}" state: absent + when: coding == true ## Configure Environment ## @@ -143,7 +145,9 @@ - "{{ user_root.home }}" - "{{ user_user.home }}" ignore_errors: yes - when: coding == true and user_root.home != "" and user_user.home != "" + when: coding == true + and user_root.home != "" + and user_user.home != "" - name: Workstation | Linux | Software | Flutter | Modify PATH (.zshrc) blockinfile: @@ -158,7 +162,9 @@ - "{{ user_root.home }}" - "{{ user_user.home }}" ignore_errors: yes - when: coding == true and user_root.home != "" and user_user.home != "" + when: coding == true + and user_root.home != "" + and user_user.home != "" ## Test SDK ##