From 2127933b0a3a2aefa1940a383a908957bf2c7f7c Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Fri, 18 Oct 2024 19:30:54 +0200 Subject: [PATCH] Update Gradle build command in Jenkinsfile Changed the Gradle build step to use 'bash' for executing the gradlew script. This ensures compatibility across different environments where the script might need a specific shell interpreter. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 511e2f4..93ec928 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('Gradle') { steps { - sh 'gradlew build' + sh 'bash gradlew build' } } stage('Archive') {