Added existence check for libs directory

This commit is contained in:
Adubbz 2015-12-17 18:10:40 +11:00
parent e9f2018afe
commit b3620d8cfc
1 changed files with 10 additions and 7 deletions

View File

@ -117,14 +117,17 @@ uploadArchives {
def list = []
def dir = new File("build/libs/")
dir.eachFileRecurse (FileType.FILES) { file ->
//Add each file to the list
list << file
}
//Print the names of all of the output files
list.each {
println it.getName()
if (dir.exists() {
dir.eachFileRecurse (FileType.FILES) { file ->
//Add each file to the list
list << file
}
//Print the names of all of the output files
list.each {
println it.getName()
}
}
println "--------------------"