mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Add single quotes around package name (#45152)
<!--- Your description here --> `pip install ansible[azure]` results in `zsh: no matches found: ansible[azure]` at least in my computer (zsh on Ubuntu). I don't know if it is the case with all shells, but at least for me it is. Since square brackets `[]` are special characters in bash, I propose adding single quotes to make sure that package name is always interpreted as literal. The same error is also resolvable by setting noglob.
This commit is contained in:
committed by
Alicia Cozine
parent
c98494d5bf
commit
0d81386144
@@ -12,7 +12,7 @@ installed on the host running Ansible.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ pip install ansible[azure]
|
||||
$ pip install 'ansible[azure]'
|
||||
|
||||
If you are running Ansible from source, you can install the dependencies from the
|
||||
root directory of the Ansible repo.
|
||||
|
||||
Reference in New Issue
Block a user