We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I just created a BLT project using the new composer method, and it worked pretty well until Travis tried to install the site.
setup:drupal:install calls setup:config-import, which fails with the error Could not find the alias @self.
setup:drupal:install
setup:config-import
Could not find the alias @self.
I find this really odd, because immediately prior to this setup:drupal:install basically runs drush @self site-install with no problem.
drush @self site-install
The text was updated successfully, but these errors were encountered:
This is because your drush.root is set to '' in project.local.yml, and drush does not know where it should run commands.
drush.root
''
project.local.yml
Sorry, something went wrong.
Yep I commented out drush.root in example.project.local.yml and it works now.
#276 should have addressed this issue.
It did.
No branches or pull requests
I just created a BLT project using the new composer method, and it worked pretty well until Travis tried to install the site.
setup:drupal:install
callssetup:config-import
, which fails with the errorCould not find the alias @self.
I find this really odd, because immediately prior to this
setup:drupal:install
basically runsdrush @self site-install
with no problem.The text was updated successfully, but these errors were encountered: