From cbece676a66c966dd25c90ed5c9efb56d7461650 Mon Sep 17 00:00:00 2001 From: Yadciel Date: Thu, 11 May 2023 19:58:57 +0200 Subject: [PATCH] SQ fix? --- jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkinsfile b/jenkinsfile index 32fd1ba..53d1831 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -32,8 +32,8 @@ pipeline { stage('SonarQube Analysis') { steps { script { - def scannerHome = tool(name: 'SQ'); - withSonarQubeEnv(installationName: 'SQ') { + def scannerHome = tool(name: 'SonarScanner'); + withSonarQubeEnv(installationName: 'SonarScanner') { sh "${scannerHome}/bin/sonar-scanner" } }