aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2015-07-09 11:03:16 +0200
committerDavid Gageot <david@gageot.net>2015-07-09 11:03:25 +0200
commitb092a65b858d3ba0be5afe65fbce1f1bb5645432 (patch)
tree8d737cb728dc5c33db28432c12cb8234b3c2c865 /travis.sh
parent3384d2f8561f4e53bca114fbfc81735056906ffc (diff)
downloadsonarqube-b092a65b858d3ba0be5afe65fbce1f1bb5645432.tar.gz
sonarqube-b092a65b858d3ba0be5afe65fbce1f1bb5645432.zip
Fix travis.sh script
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh4
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)