diff --git a/README.md b/README.md index 5a5e645..f10aaa6 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ acme_sh_git_update: False # Where will this repo get cloned to? acme_sh_git_clone_dest: "/usr/local/src/acme.sh" -# When enabled, acme.me will upgrade itself to the latest version which is +# When enabled, acme.sh will upgrade itself to the latest version which is # separate from updating the git repo. That's because acme.sh installs itself # with an installer after cloning the source code. # diff --git a/tests/test.yml b/tests/test.yml index bac19e9..a6b4f42 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -15,12 +15,12 @@ shell: "/bin/bash" post_tasks: - - name: Ensure acme.me was cloned + - name: Ensure acme.sh was cloned command: test -d /usr/local/src/acme.sh register: result_cloned changed_when: result_cloned.rc != 0 - - name: Ensure acme.me was installed + - name: Ensure acme.sh was installed command: ./acme.sh --version args: chdir: "~/.acme.sh"