Update Jenkinsfile

This commit is contained in:
Markus Fleschutz 2024-01-05 11:49:46 +01:00
parent 5c2f1ede1d
commit b436672010

2
data/Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ pipeline { // requires Jenkins plugin 'PowerShell'
stage ('Cleanup') {
steps {
echo "Pulled from ${env.GIT_URL}, branch ${env.GIT_BRANCH}, commit {$env.GIT_COMMIT} ..."
sh 'git clean -d --force'
sh 'git clean -xdf'
sh 'git status'
}
}