summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-09-02 16:30:33 -0300
committerBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-09-02 16:30:33 -0300
commitd24fedb34caefd96ac68a98dbe42e36e9ca6c7c9 (patch)
treee131f459a3e29779925d78e4fdbd984fec121471
parent15026db807efb12eb31325cacba20230ff1936b3 (diff)
Removed hard coded path of python app on mac platform
-rwxr-xr-xpkg/postmkvenv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/postmkvenv.sh b/pkg/postmkvenv.sh
index 04f8d372..9c6debe8 100755
--- a/pkg/postmkvenv.sh
+++ b/pkg/postmkvenv.sh
@@ -27,7 +27,7 @@ LIB_VIRTUALENV_PATH=$(python -c "$GET_PYTHON_LIB_CMD")
if [[ $platform == 'linux' ]]; then
LIB_SYSTEM_PATH=$(${VAR[-1]} -c "$GET_PYTHON_LIB_CMD")
elif [[ $platform == 'darwin' ]]; then
- LIB_SYSTEM_PATH=$(/opt/local/bin/python2.6 -c "$GET_PYTHON_LIB_CMD")
+ LIB_SYSTEM_PATH=$(python -c "$GET_PYTHON_LIB_CMD")
else
echo "unsupported platform; not doing symlinks"
fi