aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorJanos Gyerik <janos.gyerik@sonarsource.com>2019-03-19 14:42:51 +0100
committerSonarTech <sonartech@sonarsource.com>2019-04-09 20:21:05 +0200
commitabdf8f466dcc5e4229d5dd6d0174e244a5004ca1 (patch)
tree6623aa1d2c3a0fe421e2296e2dda6f12cceb59a8 /travis.sh
parent322555079354081f2e194aaea8abf8e826dfece9 (diff)
downloadsonarqube-abdf8f466dcc5e4229d5dd6d0174e244a5004ca1.tar.gz
sonarqube-abdf8f466dcc5e4229d5dd6d0174e244a5004ca1.zip
Double-quote variables used in command arguments in Bash
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh
index d688d27402c..37160682941 100755
--- a/travis.sh
+++ b/travis.sh
@@ -41,7 +41,7 @@ BUILD)
-Dsonar.projectKey=org.sonarsource.sonarqube:sonarqube \
-Dsonar.organization=sonarsource \
-Dsonar.host.url=https://sonarcloud.io \
- -Dsonar.login=$SONAR_TOKEN
+ -Dsonar.login="$SONAR_TOKEN"
;;
WEB_TESTS)