mirror of https://github.com/zxdos/zxuno.git
sdk: fix AND operand in `setvars.sh` script
This commit is contained in:
parent
cf81b2340b
commit
5e14beed18
|
|
@ -9,7 +9,7 @@ if [[ "x$ZXUNOSDK" == x ]]; then
|
|||
ZCCCFG=$Z88DK/lib/config
|
||||
PATH=$ZXUNOSDK/bin:$Z88DK/bin:$PATH
|
||||
# Fix paths under Cygwin for z88dk on Windows
|
||||
if [[ x$OS == xWindows_NT -a x$OSTYPE == xcygwin ]]; then
|
||||
if [[ x$OS == xWindows_NT && x$OSTYPE == xcygwin ]]; then
|
||||
ZCCCFG=`cygpath -m $ZCCCFG`
|
||||
fi
|
||||
export ZXUNOSDK
|
||||
|
|
|
|||
Loading…
Reference in New Issue