From 99e16f7c4ca1ed4b3b790f76e857ad2ee21af4fb Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Wed, 6 Sep 2017 11:03:32 -0500 Subject: [PATCH] Attemping to use underscores in the tool in places of spaces. --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 110dbb102..50bc2f60c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,6 @@ pipeline { environment { - SQ_SCANNER = tool 'SonarQube Scanner 3.0.3.778'; + SQ_SCANNER = tool 'SonarQube_Scanner_3.0.3.778'; } tools { @@ -35,6 +35,7 @@ pipeline { //} withSonarQubeEnv('Staging') { + echo "${SQ_SCANNER}" sh "${SQ_SCANNER}/bin/sonar-scanner" } }