mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Updated shebang from #!/bin/bash to #!/usr/bin/env bash (more flexible)
This commit is contained in:
parent
b0486f7a20
commit
31c8523371
2 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ For the following use case, let's use this small shell script as a wrapper.
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
PLAYBOOK="$1"
|
||||
|
||||
if [[ -z $PLAYBOOK ]]; then
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
# usage: source ./hacking/env-setup [-q]
|
||||
# modifies environment for running Ansible from checkout
|
||||
|
||||
|
|
Loading…
Reference in a new issue