-
-
Notifications
You must be signed in to change notification settings - Fork 887
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
Fix the Makefile for test and fix targets. #6913
Conversation
The bin/composer dependency was missing from half the targets that needed it. The vendor/bin/* targets are all created by a single call to composer, but were all duplicating the composer call. The php* tools defined a vendor/bin/php* target, but then proceeded to create the bin/php* target instead by symlinking from an incorrect path. php* tools were referenced as vendor/bin/php* even though they were symlinked to bin/php*.
Ah sorry, you tried
|
I opened the DevContainer completely fresh and ran The first error was that there was no After the |
I could keep going on this a bit if necessary. It looks like there's still one target in the file that refers to something in |
Ah indeed, error if starting with
Yes, that would be most welcome. |
Let's merge this PR, which is already an improvement |
The bin/composer dependency was missing from half the targets that needed it.
The vendor/bin/* targets are all created by a single call to composer, but were all duplicating the composer call.
The php* tools defined a vendor/bin/php* target, but then proceeded to create the bin/php* target instead by symlinking from an incorrect path. php* tools were referenced as vendor/bin/php* even though they were symlinked to bin/php*.
Closes #6912
Changes proposed in this pull request:
How to test the feature manually:
test
andfix
targetsPull request checklist:
Additional information can be found in the documentation.