diff options
author | David Gageot <david@gageot.net> | 2015-07-09 11:03:16 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2015-07-09 11:03:25 +0200 |
commit | b092a65b858d3ba0be5afe65fbce1f1bb5645432 (patch) | |
tree | 8d737cb728dc5c33db28432c12cb8234b3c2c865 /travis.sh | |
parent | 3384d2f8561f4e53bca114fbfc81735056906ffc (diff) | |
download | sonarqube-b092a65b858d3ba0be5afe65fbce1f1bb5645432.tar.gz sonarqube-b092a65b858d3ba0be5afe65fbce1f1bb5645432.zip |
Fix travis.sh script
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/travis.sh b/travis.sh index 295fa1cc78c..b1493f95509 100755 --- a/travis.sh +++ b/travis.sh @@ -17,7 +17,7 @@ POSTGRES) psql -c 'create database sonar;' -U postgres - runDatabaseCI "postgresql" "jdbc:postgresql://localhost/sonar" "postgres" "" + travis_runDatabaseCI "postgresql" "jdbc:postgresql://localhost/sonar" "postgres" "" ;; MYSQL) @@ -28,7 +28,7 @@ MYSQL) mysql -e "GRANT ALL ON sonar.* TO 'sonar'@'localhost';" -uroot mysql -e "FLUSH PRIVILEGES;" -uroot - runDatabaseCI "mysql" "jdbc:mysql://localhost/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance" "sonar" "sonar" + travis_runDatabaseCI "mysql" "jdbc:mysql://localhost/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance" "sonar" "sonar" ;; WEB) |