aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)