mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 22:12:24 +00:00
Fix missing quotes in path setting for tests, allowing them to run in linux under windows.
This commit is contained in:
parent
3c66e07ff0
commit
66f0363474
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue