From bcdb4e78aef56fc1f762d1bc2b6df5d1d36a76e3 Mon Sep 17 00:00:00 2001 From: EC Date: Thu, 17 Sep 2015 15:11:25 -0400 Subject: Allow env-setup to use spaces in full path --- hacking/env-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/env-setup b/hacking/env-setup index 605e41dafb..e60c2cd38c 100644 --- a/hacking/env-setup +++ b/hacking/env-setup @@ -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" -- cgit v1.2.1