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
Code line: https://github.com/paliarush/magento2-vagrant-for-developers/blob/2.0/scripts/guest/m-reinstall#L80
Second condition has a path vendor/magento/magento-message-queue which is wrong. Correct path should be vendor/magento/module-message-queue.
vendor/magento/magento-message-queue
vendor/magento/module-message-queue
if [[ -d "${MAGENTO_ROOT}/app/code/Magento/MessageQueue" ]] || [[ -d "${MAGENTO_ROOT}/vendor/magento/magento-message-queue" ]]; then install_cmd="${install_cmd} \ --amqp-host=${setupOptions[amqp_host]} \ --amqp-port=${setupOptions[amqp_port]} \ --amqp-user=${setupOptions[amqp_user]} \ --amqp-virtualhost=${setupOptions[amqp_virtualhost]} \ --amqp-password=${setupOptions[amqp_password]}" fi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Code line: https://github.com/paliarush/magento2-vagrant-for-developers/blob/2.0/scripts/guest/m-reinstall#L80
Second condition has a path
vendor/magento/magento-message-queue
which is wrong.Correct path should be
vendor/magento/module-message-queue
.The text was updated successfully, but these errors were encountered: