From: Martin Quinson Date: Tue, 19 Jul 2016 08:37:13 +0000 (+0200) Subject: Really use the right URL, bummer. X-Git-Tag: v3_14~744 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/89d2b9f028763d4f0a66ec261fcae3c889a7147e?ds=inline Really use the right URL, bummer. --- diff --git a/tools/internal/travis-sonarqube.sh b/tools/internal/travis-sonarqube.sh index c74a25df7b..6201f57425 100755 --- a/tools/internal/travis-sonarqube.sh +++ b/tools/internal/travis-sonarqube.sh @@ -27,7 +27,7 @@ installSonarQubeScanner() { export SONAR_SCANNER_OPTS="-server" } installBuildWrapper() { - curl -LsS https://nemo.sonarqube.org/static/cpp/build-wrapper-linux-x86.zip > build-wrapper-linux-x86.zip + curl -LsS https://sonarqube.com/static/cpp/build-wrapper-linux-x86.zip > build-wrapper-linux-x86.zip unzip build-wrapper-linux-x86.zip } installSonarQubeScanner @@ -38,4 +38,4 @@ installBuildWrapper # and finally execute the actual SonarQube analysis (the SONAR_TOKEN is set from the travis web interface, to not expose it) # See https://docs.travis-ci.com/user/sonarqube/ for more info on tokens -sonar-scanner -Dsonar.host.url=https://sonarqube.org -Dsonar.login=$SONAR_TOKEN +sonar-scanner -Dsonar.host.url=https://sonarqube.com -Dsonar.login=$SONAR_TOKEN