From d60b17082ee0f5e56e60fb0cdbe44f2839df053d Mon Sep 17 00:00:00 2001 From: Jake Jackson Date: Wed, 15 Apr 2020 16:23:37 -0400 Subject: [PATCH] small fix to install command as no longer needs -p by default (#68947) --- .../rst/shared_snippets/installing_multiple_collections.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/shared_snippets/installing_multiple_collections.txt b/docs/docsite/rst/shared_snippets/installing_multiple_collections.txt index d6a8ffb91b1..abd4c9ba3e6 100644 --- a/docs/docsite/rst/shared_snippets/installing_multiple_collections.txt +++ b/docs/docsite/rst/shared_snippets/installing_multiple_collections.txt @@ -35,4 +35,4 @@ file used in older Ansible releases. .. note:: While both roles and collections can be specified in one requirements file, they need to be installed separately. The ``ansible-galaxy role install -r requirements.yml`` will only install roles and - ``ansible-galaxy collection install -r requirements.yml -p ./`` will only install collections. + ``ansible-galaxy collection install -r requirements.yml`` will only install collections.