From bbd421c4238d31542cb5cf37f91a2e0557539f5e Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Fri, 20 Jun 2025 22:53:03 +0200 Subject: [PATCH] switched to ' instead of " --- Jenkinsfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f774e9b..f7f0ee4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,11 +6,7 @@ pipeline { stages { stage('Gradle') { steps { - sh """ - ./gradlew build \ - -PalttdSnapshotUsername=$NEXUS_CREDS_USR \ - -PalttdSnapshotPassword=$NEXUS_CREDS_PSW - """ + sh './gradlew build -PalttdSnapshotUsername=$NEXUS_CREDS_USR -PalttdSnapshotPassword=$NEXUS_CREDS_PSW' } } stage('Archive') {