Flutter, ensure all tasks have coding == true while refactoring.

This commit is contained in:
2026-08-02 12:02:57 -07:00
parent bcfc716b46
commit bed26990bd
+9 -3
View File
@@ -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 ##