1
0
Fork 0

Make unixy proxy code POSIX compatible

pull/7949/head
johnstevenson 2019-02-04 12:02:05 +00:00
parent f2cc666c2c
commit f4b9bbbf42
1 changed files with 7 additions and 3 deletions

View File

@ -196,9 +196,13 @@ class BinaryInstaller
dir=\$(cd "\${0%[/\\\\]*}" > /dev/null; cd $binDir && pwd) dir=\$(cd "\${0%[/\\\\]*}" > /dev/null; cd $binDir && pwd)
if [ -d /proc/cygdrive ] && [[ \$(which php) == \$(readlink -n /proc/cygdrive)/* ]]; then if [ -d /proc/cygdrive ]; then
# We are in Cgywin using Windows php, so the path must be translated case \$(which php) in
dir=\$(cygpath -m "\$dir"); \$(readlink -n /proc/cygdrive)/*)
# We are in Cygwin using Windows php, so the path must be translated
dir=\$(cygpath -m "\$dir");
;;
esac
fi fi
"\${dir}/$binFile" "\$@" "\${dir}/$binFile" "\$@"