Merge pull request #12426 from evanccnyc/devel

Allow env-setup to use spaces in full path
This commit is contained in:
James Cammarata 2015-09-17 15:21:30 -04:00
commit 52bf06661d

View file

@ -25,7 +25,7 @@ fi
# The below is an alternative to readlink -fn which doesn't exist on OS X
# Source: http://stackoverflow.com/a/1678636
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_PATH="$ANSIBLE_HOME/bin"