From 8fd948001e0201f173a08d3ab0372b1ed0266a26 Mon Sep 17 00:00:00 2001 From: etienne-miralytik <106660044+etienne-miralytik@users.noreply.github.com> Date: Wed, 24 Aug 2022 18:58:38 +0200 Subject: [PATCH] [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]) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e3f2f3a..d71451c 100644 --- a/README.md +++ b/README.md @@ -161,8 +161,8 @@ If the above doesn't fix the problem, you may try the following: You can use a task: ```yaml -- name: nvm - shell: > +- name: Install nvm + ansible.builtin.shell: > curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash args: creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"