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,6 +117,8 @@ uploadArchives {
def list = []
def dir = new File("build/libs/")
if (dir.exists() {
dir.eachFileRecurse (FileType.FILES) { file ->
//Add each file to the list
list << file
@ -126,6 +128,7 @@ uploadArchives {
list.each {
println it.getName()
}
}
println "--------------------"
repositories {