Removing usage of 'realpath' from run_test

It's not portable to other systems because it's Debian specific.
This commit is contained in:
Strahinja Val Markovic 2013-10-04 15:34:08 -07:00
parent 070d39b2a9
commit ddef46fdbe

View File

@ -35,7 +35,7 @@ EXTRA_CMAKE_ARGS=$extra_cmake_args YCM_TESTRUN=1 ./install.sh
for directory in third_party/*; do for directory in third_party/*; do
if [ -d "${directory}" ]; then if [ -d "${directory}" ]; then
export PYTHONPATH=$(realpath ${directory}):$PYTHONPATH export PYTHONPATH=$PWD/${directory}:$PYTHONPATH
fi fi
done done