Delete world folders in Jenkinsfile.

This commit is contained in:
Harrison Deng 2022-05-12 02:50:45 -05:00
parent 7d78c4715c
commit d11b607267

1
Jenkinsfile vendored
View File

@ -4,6 +4,7 @@ pipeline {
stage("cleanup") {
steps {
cleanWs(patterns: [[pattern: 'publish/**', type: 'INCLUDE']])
cleanWs(patterns: [[pattern: 'world/', type: 'INCLUDE']])
}
}
stage("server launch test") {