Commit a6bcb206 authored by Tom0017's avatar Tom0017
Browse files

Fix order extractDependencies is executed on build task

parent 9a550408
Showing with 1 addition and 2 deletions
+1 -2
......@@ -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 {
......@@ -96,5 +95,5 @@ tasks.register("install") {
}
}
build.dependsOn extractDependencies
build.finalizedBy extractDependencies
install.dependsOn build
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment