add double quotes to echo

This commit is contained in:
Roberto Cirillo 2022-04-15 16:44:17 +02:00
parent a3b0e55adf
commit 0c38f702b5
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -52,7 +52,7 @@ pipeline {
}
}
steps {
echo 'New deploy of ${JOB_NAME} appended to the deploy file'
echo "New deploy of ${JOB_NAME} appended to the deploy file"
}
}
stage('Deploy from job ') {
@ -64,7 +64,7 @@ pipeline {
}
}
steps {
echo 'New deploy of ${JOB_NAME}'
echo "New deploy of ${JOB_NAME}"
}
}