Resolve binary realpath to make sure symlinking bin proxies works, refs jakzal/phpqa#336

main
Jordi Boggiano 2 years ago
parent d1d5d75c5f
commit 390260c6a6
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -392,7 +392,13 @@ PROXY;
return <<<PROXY
#!/usr/bin/env sh
dir=\$(cd "\${0%[/\\\\]*}" > /dev/null; cd $binDir && pwd)
self=\$(realpath \$0)
if [ -z "\$self" ]
then
self="\$0"
fi
dir=\$(cd "\${self%[/\\\\]*}" > /dev/null; cd $binDir && pwd)
if [ -d /proc/cygdrive ]; then
case \$(which php) in
@ -403,7 +409,7 @@ if [ -d /proc/cygdrive ]; then
esac
fi
export COMPOSER_BIN_DIR=\$(cd "\${0%[/\\\\]*}" > /dev/null; pwd)
export COMPOSER_BIN_DIR=\$(cd "\${self%[/\\\\]*}" > /dev/null; pwd)
"\${dir}/$binFile" "\$@"

Loading…
Cancel
Save