Remove the generated .zip file before building in the Jenkinsfile.

This commit is contained in:
Username404-59 2021-04-16 13:36:30 +02:00
parent 3813476a52
commit 8651c34ed7
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 0 deletions

1
Jenkinsfile vendored
View File

@ -13,6 +13,7 @@ pipeline {
steps {
echo 'Cleaning...'
sh './gradlew clean'
dir('remappedJars') { sh 'rm ./*.zip' }
echo 'Building..'
sh './gradlew build --stacktrace'
}