Skip to content

Commit dd04dc1

Browse files
committed
Fix instructions for running tests in Readme.md: the variables were not being exported to the make test process
1 parent 87d20b9 commit dd04dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ For example, if you have an installation of mysql running on localhost:3306 and
877877

878878
```
879879
mysql -u root -e "CREATE DATABASE IF NOT EXISTS node_mysql_test"
880-
MYSQL_HOST=localhost && MYSQL_PORT=3306 && MYSQL_DATABASE=node_mysql_test && MYSQL_USER=root && MYSQL_PASSWORD= && make test
880+
MYSQL_HOST=localhost MYSQL_PORT=3306 MYSQL_DATABASE=node_mysql_test MYSQL_USER=root MYSQL_PASSWORD= make test
881881
```
882882

883883
## Todo

0 commit comments

Comments
 (0)