Skip to content

Commit 7188889

Browse files
committed
utopia-riseGH-811 Add missing override on copy
1 parent 0446b33 commit 7188889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kt/plugins/godot-gradle-plugin/src/main/kotlin/godot/gradle/tasks/android/packageBootstrapDexJarTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fun Project.packageBootstrapDexJarTask(
3535
if (resourceFile == null) {
3636
project.logger.error("Could not copy $resourcePath to godot-bootstrap-dex.jar")
3737
} else {
38-
resourceFile.copyTo(resourcesDir.resolve(resourcePath))
38+
resourceFile.copyTo(resourcesDir.resolve(resourcePath), overwrite = true)
3939
}
4040
}
4141

0 commit comments

Comments
 (0)