sdk: fix AND operand in `setvars.sh` script

This commit is contained in:
Ivan Tatarinov 2021-04-22 13:01:42 +03:00
parent cf81b2340b
commit 5e14beed18
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ if [[ "x$ZXUNOSDK" == x ]]; then
ZCCCFG=$Z88DK/lib/config ZCCCFG=$Z88DK/lib/config
PATH=$ZXUNOSDK/bin:$Z88DK/bin:$PATH PATH=$ZXUNOSDK/bin:$Z88DK/bin:$PATH
# Fix paths under Cygwin for z88dk on Windows # 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` ZCCCFG=`cygpath -m $ZCCCFG`
fi fi
export ZXUNOSDK export ZXUNOSDK