diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-06-17 09:20:01 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-06-17 09:20:01 +0200 |
commit | 4aeeb280609ec60244ae5f56a22bcea895ebe9b6 (patch) | |
tree | 1c474c4083c2d48ce19d75ed061a4afc940e418c /travis.sh | |
parent | 5bae5f43def0cfb9e301e0d0bd87f4079679f1db (diff) | |
download | sonarqube-4aeeb280609ec60244ae5f56a22bcea895ebe9b6.tar.gz sonarqube-4aeeb280609ec60244ae5f56a22bcea895ebe9b6.zip |
attempt to fix travis script missing $4 variable
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 f79476ee6f7..8b237b646cb 100755 --- a/travis.sh +++ b/travis.sh @@ -17,7 +17,7 @@ POSTGRES) psql -c 'create database sonar;' -U postgres - travis_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 - travis_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" ;; *) |