From d568a952abc2f54c85fc838216eaeb0bd4eb6b9a Mon Sep 17 00:00:00 2001 From: Jyrki Gadinger Date: Fri, 3 Apr 2026 08:33:30 +0200 Subject: [PATCH] fix(desktop/qt6): correct PATH for new sonar-scanner binary Signed-off-by: Jyrki Gadinger --- client-qt6/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-qt6/Dockerfile b/client-qt6/Dockerfile index 8531bd3..82d41e2 100644 --- a/client-qt6/Dockerfile +++ b/client-qt6/Dockerfile @@ -104,7 +104,7 @@ RUN mkdir -p /opt/sonar && \ curl -sSLo /opt/sonar/sonar-scanner.zip ${SONAR_SCANNER_DOWNLOAD_URL} && \ unzip -o /opt/sonar/sonar-scanner.zip -d /opt/sonar/ -ENV PATH=/opt/sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux/bin:${PATH} +ENV PATH=/opt/sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux-x64/bin:${PATH} # Setup build-wrapper ENV BUILD_WRAPPER_DOWNLOAD_URL ${SONAR_SERVER_URL}/static/cpp/build-wrapper-linux-x86.zip