Jenkins: Buildjob: GIT Pfad beim Template löschen berücksichtigen

This commit is contained in:
Günther Hutter 2020-04-20 11:42:05 +00:00 committed by Gitea
commit 04be6f2b83

2
Jenkinsfile vendored
View File

@ -85,7 +85,7 @@ pipeline {
stage('Checkout template') {
steps {
// remove template folder and fresh checkout
sh "rm -rf ${env.TEMPLATE_NAME}"
sh "rm -rf ${env.GIT_PATH}${env.TEMPLATE_NAME}"
checkout([
$class: 'GitSCM',
branches: [[name: '*/master']],