Skip to content

Commit d1ebe13

Browse files
committed
What a difference one slash can make ... overrides were broken, no more! :-)
1 parent 908206e commit d1ebe13

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/BiomesAPI/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ task syncAssets(type: Sync) {
150150

151151
task syncOverrides(type: Sync) {
152152
from 'overrides'
153-
into "${mainSourceSet.output.classesDirs.first()}overrides"
153+
into "${mainSourceSet.output.classesDirs.first()}/overrides"
154154
}
155155

156156
task syncDeltas(type: Sync) {

modules/BuilderSampleGameplay/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ task syncAssets(type: Sync) {
150150

151151
task syncOverrides(type: Sync) {
152152
from 'overrides'
153-
into "${mainSourceSet.output.classesDirs.first()}overrides"
153+
into "${mainSourceSet.output.classesDirs.first()}/overrides"
154154
}
155155

156156
task syncDeltas(type: Sync) {

modules/Core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ task syncAssets(type: Sync) {
150150

151151
task syncOverrides(type: Sync) {
152152
from 'overrides'
153-
into "${mainSourceSet.output.classesDirs.first()}overrides"
153+
into "${mainSourceSet.output.classesDirs.first()}/overrides"
154154
}
155155

156156
task syncDeltas(type: Sync) {

modules/CoreSampleGameplay/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ task syncAssets(type: Sync) {
150150

151151
task syncOverrides(type: Sync) {
152152
from 'overrides'
153-
into "${mainSourceSet.output.classesDirs.first()}overrides"
153+
into "${mainSourceSet.output.classesDirs.first()}/overrides"
154154
}
155155

156156
task syncDeltas(type: Sync) {

templates/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ task syncAssets(type: Sync) {
150150

151151
task syncOverrides(type: Sync) {
152152
from 'overrides'
153-
into "${mainSourceSet.output.classesDirs.first()}overrides"
153+
into "${mainSourceSet.output.classesDirs.first()}/overrides"
154154
}
155155

156156
task syncDeltas(type: Sync) {

0 commit comments

Comments
 (0)