Fix missing quotes in path setting for tests, allowing them to run in linux under windows.

This commit is contained in:
David Brown 2018-04-24 12:21:57 +01:00
parent 3c66e07ff0
commit 66f0363474

View file

@ -5,8 +5,8 @@
echo --- Confidence test $(basename $PWD) ---
if which cygpath >/dev/null 2>/dev/null
then export PATH="$(cygpath "$1")/bin":$PATH
else export PATH="$1/bin":$PATH
then export PATH="$(cygpath "$1")/bin":"$PATH"
else export PATH="$1/bin":"$PATH"
fi
# Set ibrary paths for darwin and termux(android)
export DYLD_LIBRARY_PATH=$1/lib:$DYLD_LIBRARY_PATH