diff options
author | Malena Ebert <malena.ebert@sonarsource.com> | 2021-01-05 09:18:00 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-01-05 20:15:14 +0000 |
commit | 9376f2f075f2475bdaa5f6df158f35479c781fd6 (patch) | |
tree | 4255a616d91365dfcd564de53620ca57899a60ef | |
parent | 6531a4e7af1cf60150d1e967201dd7453d8b45e5 (diff) | |
download | sonarqube-9376f2f075f2475bdaa5f6df158f35479c781fd6.tar.gz sonarqube-9376f2f075f2475bdaa5f6df158f35479c781fd6.zip |
Cleanup travis run_iris script
-rwxr-xr-x | .travis/run_iris.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/run_iris.sh b/.travis/run_iris.sh index 9abfc2813a1..0ea8cc7476f 100755 --- a/.travis/run_iris.sh +++ b/.travis/run_iris.sh @@ -13,7 +13,7 @@ HTTP_CODE=$(\ if [ "$HTTP_CODE" != "200" ]; then echo "Download $VERSION failed -> $HTTP_CODE" - exit -1 + exit 1 else echo "Downloaded $VERSION" fi @@ -24,4 +24,4 @@ java -Diris.projectKey=org.sonarsource.sonarqube:sonarqube \ -Diris.destination.url=$SONAR_HOST_URL \ -Diris.destination.token=$SONAR_TOKEN \ -Diris.maxcountposts=50 \ - -jar iris-[RELEASE]-jar-with-dependencies.jar + -jar iris-\[RELEASE\]-jar-with-dependencies.jar |