Fixed unit building not starting when some resources are missing

This commit is contained in:
Anuken
2021-07-28 18:08:17 -04:00
parent 78f55765c1
commit 4734261097
2 changed files with 6 additions and 2 deletions

View File

@@ -341,7 +341,11 @@ project(":core"){
}
}
def changelogs = file("../fastlane/metadata/android/en-US/changelogs/")
new File(changelogs, androidVersion + ".txt").text = (result)
try{
new File(changelogs, androidVersion + ".txt").text = (result)
}catch(Exception e){
e.printStackTrace()
}
}
}