mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
tweak hacking/env-setup to work under ash (#17054)
This commit is contained in:
parent
39d764c7ad
commit
525c0469d2
1 changed files with 2 additions and 2 deletions
|
@ -16,9 +16,9 @@ if [ -n "$BASH_SOURCE" ] ; then
|
|||
HACKING_DIR=$(dirname "$BASH_SOURCE")
|
||||
elif [ $(basename -- "$0") = "env-setup" ]; then
|
||||
HACKING_DIR=$(dirname "$0")
|
||||
# Works with ksh93 but not pdksh
|
||||
# Works with ksh93 but not pdksh, have to eval to keep ash happy...
|
||||
elif [ -n "$KSH_VERSION" ] && echo $KSH_VERSION | grep -qv '^@(#)PD KSH'; then
|
||||
HACKING_DIR=$(dirname "${.sh.file}")
|
||||
eval "HACKING_DIR=\$(dirname \"\${.sh.file}\")"
|
||||
else
|
||||
HACKING_DIR="$PWD/hacking"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue