1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-11 08:15:35 +03:00

Minor deployment script fixes

This commit is contained in:
Anuken 2021-08-01 18:01:36 -04:00
parent 9c1f897fff
commit d9a92dc10e
3 changed files with 4 additions and 2 deletions

View File

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

View File

@ -363,6 +363,7 @@ public class PowerNode extends PowerBlock{
@Override
public void dropped(){
power.links.clear();
updatePowerGraph();
}
@Override

View File

@ -126,6 +126,7 @@ platforms.each{ platform ->
}
args += "Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1"
args += "XX:+ShowCodeDetailsInExceptionMessages"
exec{
commandLine args.toList()