Skip to content

Commit a6bcb20

Browse files
committed
Fix order extractDependencies is executed on build task
1 parent 9a55040 commit a6bcb20

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

game/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ applicationDistribution.from("$rootDir") {
6565
}
6666

6767
task extractDependencies(type: Copy) {
68-
6968
from(zipTree("build/distributions/game-${project.version}.zip")) {
7069
include "game-${project.version}/lib/*"
7170
eachFile {
@@ -96,5 +95,5 @@ tasks.register("install") {
9695
}
9796
}
9897

99-
build.dependsOn extractDependencies
98+
build.finalizedBy extractDependencies
10099
install.dependsOn build

0 commit comments

Comments
 (0)