mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #10092 from rpe-github/devel
In env-setup use basename -- $0 in case $0 starts with a dash.
This commit is contained in:
commit
35b4e6a3d0
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ fi
|
|||
# When run using source as directed, $0 gets set to bash, so we must use $BASH_SOURCE
|
||||
if [ -n "$BASH_SOURCE" ] ; then
|
||||
HACKING_DIR=$(dirname "$BASH_SOURCE")
|
||||
elif [ $(basename "$0") = "env-setup" ]; then
|
||||
elif [ $(basename -- "$0") = "env-setup" ]; then
|
||||
HACKING_DIR=$(dirname "$0")
|
||||
else
|
||||
HACKING_DIR="$PWD/hacking"
|
||||
|
|
Loading…
Reference in a new issue