diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-01-19 10:43:12 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-01-19 10:43:12 +0100 |
| commit | 2380e1aa5f53ec38f47f1a587ead43a4459e5773 (patch) | |
| tree | 29654632bc0c152e0214c79ad640f91101a65aed | |
| parent | e2e9d4238dc22add83a82efddd2caacdfdeb63b9 (diff) | |
Fix linting issues in dotfiles
| -rw-r--r-- | roles/dotfiles/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/dotfiles/tasks/main.yml b/roles/dotfiles/tasks/main.yml index 8a8b0210..c8646cd0 100644 --- a/roles/dotfiles/tasks/main.yml +++ b/roles/dotfiles/tasks/main.yml @@ -12,7 +12,7 @@ ansible.builtin.shell: cmd: "{{ dotfiles_setup_script }}" executable: "/bin/bash" - register: dotfile_setup + register: dotfiles_setup changed_when: true tags: # Since the script will report changed every time (even thought it's idempotent) @@ -20,7 +20,7 @@ - name: "Show dotfile setup output" ansible.builtin.debug: - var: dotfile_setup.stdout + var: dotfiles_setup.stdout tags: # Since this doesn't run on idempotence testing - molecule-idempotence-notest |
