Fix timezone issue with the installer.

This commit is contained in:
LexManos 2019-09-23 02:46:43 +00:00
parent 48cf910626
commit f03745ce45
1 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ project(':forge') {
MCP_ARTIFACT = project(':mcp').mcp.config MCP_ARTIFACT = project(':mcp').mcp.config
SPECIAL_SOURCE = 'net.md-5:SpecialSource:1.8.5' SPECIAL_SOURCE = 'net.md-5:SpecialSource:1.8.5'
VERSION_JSON = project(':mcp').file('build/mcp/downloadJson/version.json') VERSION_JSON = project(':mcp').file('build/mcp/downloadJson/version.json')
BINPATCH_TOOL = 'net.minecraftforge:binarypatcher:1.0.6:fatjar' BINPATCH_TOOL = 'net.minecraftforge:binarypatcher:1.0.7:fatjar'
} }
def getVersion = { def getVersion = {
@ -743,7 +743,7 @@ project(':forge') {
ext { ext {
output = file('build/install_profile.json') output = file('build/install_profile.json')
INSTALLER_TOOLS = 'net.minecraftforge:installertools:1.1.4' INSTALLER_TOOLS = 'net.minecraftforge:installertools:1.1.4'
JAR_SPLITTER = 'net.minecraftforge:jarsplitter:1.1.1' JAR_SPLITTER = 'net.minecraftforge:jarsplitter:1.1.2'
} }
doFirst { doFirst {
ext.BIN_PATCHER = BINPATCH_TOOL.substring(0, BINPATCH_TOOL.length() - 1 - BINPATCH_TOOL.split(':')[3].length()) ext.BIN_PATCHER = BINPATCH_TOOL.substring(0, BINPATCH_TOOL.length() - 1 - BINPATCH_TOOL.split(':')[3].length())