Update 'Jenkinsfile'

fix sintax
This commit is contained in:
Roberto Cirillo 2022-09-20 16:43:22 +02:00
parent 520ef745eb
commit 01cbf48590
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -12,8 +12,8 @@ pipeline {
}
environment {
JAVA_HOME='/usr/lib/jvm/java-8-openjdk-amd64'
GIT_URL= '${params.GIT_URL}'
GIT_BRANCH= '${params.GIT_BRANCH}'
GIT_URL= "${params.GIT_URL}"
GIT_BRANCH= "${params.GIT_BRANCH}"
}
stages {
stage('Checkout git project') {