Skip to content

Commit

Permalink
Bump 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
IzzelAliz committed Jun 16, 2020
1 parent 2a532ef commit 182dc53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'io.izzel.arclight'
version '1.5'
version '1.6'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ class ArclightGradlePlugin implements Plugin<Project> {
def installerJar = project.file("${project.buildDir}/arclight_cache/forge-${arclightExt.mcVersion}-${arclightExt.forgeVersion}-installer.jar")
downloadInstaller.doFirst {
if (installerJar.exists()) throw new StopExecutionException()
if (installerJar.parentFile != null) {
installerJar.parentFile.mkdirs()
}
def installerUrl = "https://files.minecraftforge.net/maven/net/minecraftforge/forge/${arclightExt.mcVersion}-${arclightExt.forgeVersion}/forge-${arclightExt.mcVersion}-${arclightExt.forgeVersion}-installer.jar"
Utils.download(installerUrl, installerJar)
}
Expand Down

0 comments on commit 182dc53

Please sign in to comment.