mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Tweak to hacking path fix to go back to subshell use
This commit is contained in:
parent
52bf06661d
commit
a431121f9f
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ fi
|
||||||
# The below is an alternative to readlink -fn which doesn't exist on OS X
|
# The below is an alternative to readlink -fn which doesn't exist on OS X
|
||||||
# Source: http://stackoverflow.com/a/1678636
|
# Source: http://stackoverflow.com/a/1678636
|
||||||
FULL_PATH=$(python -c "import os; print(os.path.realpath('$HACKING_DIR'))")
|
FULL_PATH=$(python -c "import os; print(os.path.realpath('$HACKING_DIR'))")
|
||||||
export ANSIBLE_HOME="`dirname "$FULL_PATH"`"
|
export ANSIBLE_HOME="$(dirname "$FULL_PATH")"
|
||||||
|
|
||||||
PREFIX_PYTHONPATH="$ANSIBLE_HOME/lib"
|
PREFIX_PYTHONPATH="$ANSIBLE_HOME/lib"
|
||||||
PREFIX_PATH="$ANSIBLE_HOME/bin"
|
PREFIX_PATH="$ANSIBLE_HOME/bin"
|
||||||
|
|
Loading…
Reference in a new issue