Skip to content

Commit

Permalink
Fix order extractDependencies is executed on build task
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomm0017 committed Mar 22, 2019
1 parent 9a55040 commit a6bcb20
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions game/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ applicationDistribution.from("$rootDir") {
}

task extractDependencies(type: Copy) {

from(zipTree("build/distributions/game-${project.version}.zip")) {
include "game-${project.version}/lib/*"
eachFile {
Expand Down Expand Up @@ -96,5 +95,5 @@ tasks.register("install") {
}
}

build.dependsOn extractDependencies
build.finalizedBy extractDependencies
install.dependsOn build

0 comments on commit a6bcb20

Please sign in to comment.