From c533b0f362b86970a6229a1f65854f835507b9a6 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Tue, 27 Jul 2021 18:48:19 -0500 Subject: [PATCH] Fix typo in README template I corrected the path `molecule/resources` to `molecule/default` --- templates/README.md.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/README.md.j2 b/templates/README.md.j2 index e7c72c6..8274ab6 100644 --- a/templates/README.md.j2 +++ b/templates/README.md.j2 @@ -8,12 +8,12 @@ ## [Example Playbook](#example-playbook) -This example is taken from `molecule/resources/converge.yml` and is tested on each push, pull request and release. +This example is taken from `molecule/default/converge.yml` and is tested on each push, pull request and release. ```yaml {{ example.content | b64decode | regex_replace('ansible-role-', galaxy_namespace ~ '.') }}``` {% if prepare.content is defined %} -The machine needs to be prepared in CI this is done using `molecule/resources/prepare.yml`: +The machine needs to be prepared in CI this is done using `molecule/default/prepare.yml`: ```yaml {{ prepare.content | b64decode | regex_replace('ansible-role-', galaxy_namespace ~ '.') }}```