From 5db9c95bf65dacd5335bc4f26d53ab0a8cb45a9b Mon Sep 17 00:00:00 2001 From: Akira Yokochi Date: Mon, 24 Apr 2023 22:56:48 +0900 Subject: [PATCH 1/2] fix tree --- docs/examples.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/docs/examples.md b/docs/examples.md index faba1c6166..d1322db22b 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -279,9 +279,22 @@ platforms: Molecule is generally used to test roles in isolation. However, it can also test roles from a monolith repo. -> \$ tree monolith-repo -L 3 \--prune monolith-repo ├── library │   └── -> foo.py ├── plugins │   └── filters │   └── foo.py └── roles ├── bar -> │   └── README.md ├── baz │   └── README.md └── foo └── README.md +```bash +$ tree monolith-repo -L 3 --prune +monolith-repo + ├── library + │ └── foo.py + ├── plugins + │ └── filters + │ └── foo.py + └── roles + ├── bar + │ └── README.md + ├── baz + │ └── README.md + └── foo + └── README.md +``` The role initialized with Molecule (baz in this case) would simply reference the dependent roles via it's `converge.yml` or meta From fc4331e7205e049f1c70f3fd48897a2f182f27a1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 24 Apr 2023 13:59:47 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- docs/examples.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/examples.md b/docs/examples.md index d1322db22b..708744341e 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -284,15 +284,15 @@ $ tree monolith-repo -L 3 --prune monolith-repo ├── library │ └── foo.py - ├── plugins + ├── plugins │ └── filters │ └── foo.py - └── roles + └── roles ├── bar - │ └── README.md - ├── baz - │ └── README.md - └── foo + │ └── README.md + ├── baz + │ └── README.md + └── foo └── README.md ```