Skip to content

Commit

Permalink
Use proper boolean values
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdewit committed Jan 15, 2024
1 parent f67ffcd commit 47c5d84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/setup-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
become: true
become_user: root
ansible.builtin.apt:
update_cache: yes
update_cache: true
cache_valid_time: 3600
name: "{{ packages }}"
vars:
Expand Down
4 changes: 2 additions & 2 deletions tasks/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
executable: /bin/bash
chdir: "{{ nvm_install_path }}"
register: nvm_check_default
changed_when: False
failed_when: False
changed_when: false
failed_when: false

- name: Set default Node.js version to {{ nvm_node_version }}
ansible.builtin.shell: ". ./nvm.sh && nvm alias default {{ nvm_node_version }}"
Expand Down

0 comments on commit 47c5d84

Please sign in to comment.