You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The composer (1.10.5) tooling for symlinks require absolute paths (this may be a change on their side, I did not investigate). When using rename the $filename is set to a plain name, phpcs in my example, when it should be /some/path/vendor/bin/phpcs.
(After fixing 1) process always downloads files with a .phar extension, so that symlinkOrCopy produces dangling symlinks for my example, e.g. phpcs -> ../tm/tooly-composer-script/bin/phpcs, when the downloaded file is forced to be ../tm/tooly-composer-script/bin/phpcs.phar.
I am using
rename
, e.g.This currently (1.4.1) fails due to two issues:
rename
the$filename
is set to a plain name,phpcs
in my example, when it should be/some/path/vendor/bin/phpcs
.process
always downloads files with a.phar
extension, so thatsymlinkOrCopy
produces dangling symlinks for my example, e.g.phpcs -> ../tm/tooly-composer-script/bin/phpcs
, when the downloaded file is forced to be../tm/tooly-composer-script/bin/phpcs.phar
.My proposed patch:
The text was updated successfully, but these errors were encountered: