From bed26990bddf532be34ef7ca9269c38feabb2bf3 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 2 Aug 2026 12:02:57 -0700 Subject: [PATCH] Flutter, ensure all tasks have coding == true while refactoring. --- tasks/workstation/linux/software/flutter.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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 ##