fix bash warning message in dockcross.sh

This commit is contained in:
muwa00
2026-02-25 22:19:46 +07:00
committed by GitHub
parent af62f2c926
commit 471f25e046
+1 -1
View File
@@ -218,7 +218,7 @@ elif [ -n "$CYGWIN" ]; then
HOST_PWD="$( cygpath -w "$( readlink -f "$( pwd ;)" ; )" ; )" ; HOST_PWD="$( cygpath -w "$( readlink -f "$( pwd ;)" ; )" ; )" ;
else else
HOST_PWD=$PWD HOST_PWD=$PWD
[ -L $HOST_PWD ] && HOST_PWD=$(readlink $HOST_PWD) [ -L "$HOST_PWD" ] && HOST_PWD=$(readlink $HOST_PWD)
fi fi
# Mount Additional Volumes # Mount Additional Volumes