Closed igrybkov closed 6 years ago
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
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 bevendor/magento/module-message-queue
.