-
Notifications
You must be signed in to change notification settings - Fork 939
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
console-en not included with project #508
Comments
I think it's a change to composer/installers#311 that has been tagged as 1.7.0 yesterday. |
Currently a fix for this might be:
|
...and an actual fix in hechoendrupal/drupal-console-core#364 |
For me hechoendrupal/drupal-console-core#364 does not fix the issue of the install location. Defining the composer/installers path does. |
hechoendrupal/drupal-console-core#364 is not supposed to fix the location. It is supposed to support the new location, and also avoid infinite recursion |
I'm having this same issue after upgrading Drupal to 8.7. I assume there was some dependency along the lines with 8.7 that was also upgraded, such as Drupal console updated and now this issue is present. I'm noticing the issue in a Bitbucket pipelines where it's giving this error And inside a local Vagrant for the Drupal site, I am also seeing this error:
|
I tried making the change from #508 (comment), but it results in the same error I posted in my earlier comment. |
As per hechoendrupal/drupal-console-core#364 (comment), we should add console/language to the .gitignore file. |
This was related to an old PR composer/installers#311 merged to the But got fixed on latest release of the |
Thanks! No changes required in this project. |
See drupal-composer/drupal-project#508 and linked Drupal Console issues.
See drupal-composer/drupal-project#508 and linked Drupal Console issues.
After using
composer create-project drupal-composer/drupal-project:8.x-dev my-project --stability dev --no-interaction
to create a new project, trying to run the console gives you a recursive loop that results in an out of memory on
src/vendor/drupal/console-core/src/Utils/TranslatorManager.php on line 108
This is because it's looking for a folder
console-en
invendor/drupal
, but it's not there.Upon further inspection, previous projects that I created using the above command include the folder
console-en
- and the console is fixed by pasting that folder in.What has changed recently to cause this behaviour?
The text was updated successfully, but these errors were encountered: