[readme] Fix Ansible Linting Errors

Fixes #2860.

This fixes these two linting errors:
- fqcn-builtins: Use FQCN for builtin actions.
- name: All names should start with an uppercase letter. (name[casing])
etienne-miralytik 2022-08-24 18:58:38 +02:00 committed by Jordan Harband
parent 5a4e9184f1
commit 8fd948001e
No known key found for this signature in database
GPG Key ID: 9F6A681E35EF8B56
1 changed files with 2 additions and 2 deletions

View File

@ -161,8 +161,8 @@ If the above doesn't fix the problem, you may try the following:
You can use a task: You can use a task:
```yaml ```yaml
- name: nvm - name: Install nvm
shell: > ansible.builtin.shell: >
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
args: args:
creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh" creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"