-
-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fails to delete ignore files if asset-installer-paths is defined #131
Comments
Use you the last stable versions (v1.0.2) of this plugin and composer? |
yes both are latest :
|
Indeed, it seems that the change of directory is not supported by the IgnoreFactory. |
some other observation that might help fix the bug a) A quick fix copying logic from
b) A possible bug for future in
above code fails for
because : |
Alas, yes, it's the standard of Composer, and that's a problem ... |
Let say I have following composer.json
I have defined both
vendor-dir
as well asasset-installer-paths
, given that , composer fails to delete ignore files defined inasset-ignore-files
list.problem seems to be
Installer/IgnoreFactory.php
class which does not account for the both directory settings, to be specific getInstallDirI think it makes sense to have different paths for
vendor-dir
andasset-installer-paths
, as I dont want to putvendor-dir
on web accessible path.thanks
The text was updated successfully, but these errors were encountered: