We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59afea commit 9478363Copy full SHA for 9478363
.travis.yml
@@ -4,8 +4,7 @@ before_install:
4
- gem --version
5
- bash .travis_setup.sh
6
- mysqld --version
7
- - mysql -u root -e "CREATE DATABASE IF NOT EXISTS test"
8
- - mysql -u root -e "CREATE USER '$USER'@'localhost'" || true
+ - mysql -u $USER -e "CREATE DATABASE IF NOT EXISTS test"
9
os:
10
- linux
11
rvm:
.travis_setup.sh
@@ -23,3 +23,5 @@ if ! [[ x$OSTYPE =~ ^xdarwin ]]; then
23
sudo bash .travis_ssl.sh
24
sudo service mysql restart
25
fi
26
+
27
+sudo mysql -e "CREATE USER '$USER'@'localhost'" || true
0 commit comments