mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Corrected quoting of parameter expansions in hacking/env-setup
Conflicts: hacking/env-setup
This commit is contained in:
parent
b8921706f8
commit
b688570380
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@
|
|||
|
||||
# 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
|
||||
HACKING_DIR=$(dirname $0)
|
||||
HACKING_DIR=$(dirname "$BASH_SOURCE")
|
||||
elif [ $(basename "$0") = "env-setup" ]; then
|
||||
HACKING_DIR=$(dirname "$0")
|
||||
else
|
||||
HACKING_DIR="$PWD/hacking"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue