Skip to content

Commit e825093

Browse files
committed
wording in travis file
1 parent 057d4e0 commit e825093

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ before_install:
1111
# workaround, see https://github.com/travis-ci/travis-ci/issues/4629
1212
- sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml
1313

14-
# install in travis jargon means install dependencies
14+
# install dependencies
1515
install: mvn dependency:go-offline -B -V
1616

1717
before_script:
1818
# initalize empty database and privileges
19-
- mysql -uroot -e "CREATE DATABASE stevedb;"
20-
- mysql -uroot -e "GRANT ALL PRIVILEGES ON stevedb.* TO 'steve'@'localhost' IDENTIFIED BY 'changeme';"
21-
- mysql -uroot -e "GRANT SELECT ON mysql.proc TO 'steve'@'localhost' IDENTIFIED BY 'changeme';"
19+
- mysql -uroot -e "CREATE DATABASE stevedb;" -v
20+
- mysql -uroot -e "GRANT ALL PRIVILEGES ON stevedb.* TO 'steve'@'localhost' IDENTIFIED BY 'changeme';" -v
21+
- mysql -uroot -e "GRANT SELECT ON mysql.proc TO 'steve'@'localhost' IDENTIFIED BY 'changeme';" -v
2222

23-
# start the actually build process
23+
# start the actual build
2424
script: mvn clean package -B -V

0 commit comments

Comments
 (0)