- πΊπΈUnited States dshumaker
MR 10 works for me. https://git.drupalcode.org/project/path_redirect_import/-/merge_requests...
When running $ drush deploy
with drush version 10 the following error occurs:
[info] path_redirect_import should have an extra.drush.services section in its composer.json. See http://docs.drush.org/en/10.x/commands/#specifying-the-services-file.
Add the following section to the composer.json file of this module:
"extra": {
"drush": {
"services": {
"drush.services.yml": "^9 || ^10"
}
}
}
This is also done in other modules like acquia_connector, config_inspector, pathauto and many others.
Add the extra section and create composer.json file for this module.
Needs review
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
MR 10 works for me. https://git.drupalcode.org/project/path_redirect_import/-/merge_requests...