Skip to content

Commit bfd05a3

Browse files
committed
fixed an issue with access to mysql
1 parent 5b37022 commit bfd05a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/guest/m-reinstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ rm -f "${MAGENTO_ROOT}/app/etc/env.php"
3939
# Create DB
4040
db_names=(${setupOptions[db_name]} "magento_integration_tests" )
4141
for db_name in "${db_names[@]}"; do
42-
mysql -e "drop database if exists ${db_name}; create database ${db_name};"
42+
mysql -uroot -e "drop database if exists ${db_name}; create database ${db_name};"
4343
done
4444

4545
# Install Magento application

0 commit comments

Comments
 (0)