Update Jenkinsfile

Try to fix compilation errors
pull/3/head
Hammy 3 years ago
parent a8503a2641
commit d4782842cb

6
Jenkinsfile vendored

@ -47,13 +47,13 @@ pipeline {
when {
allOf {
expression {
return fileExists javadocsArtifact
return fileExists(javadocsArtifact)
}
expression {
return fileExists jarWithSourcesArtifact
return fileExists(jarWithSourcesArtifact)
}
expression {
return fileExists jarArtifact
return fileExists(jarArtifact)
}
}
}

Loading…
Cancel
Save