Skip to content

Commit

Permalink
What a difference one slash can make ... overrides were broken, no mo…
Browse files Browse the repository at this point in the history
…re! :-)
  • Loading branch information
Cervator committed Mar 8, 2020
1 parent 908206e commit d1ebe13
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/BiomesAPI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ task syncAssets(type: Sync) {

task syncOverrides(type: Sync) {
from 'overrides'
into "${mainSourceSet.output.classesDirs.first()}overrides"
into "${mainSourceSet.output.classesDirs.first()}/overrides"
}

task syncDeltas(type: Sync) {
Expand Down
2 changes: 1 addition & 1 deletion modules/BuilderSampleGameplay/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ task syncAssets(type: Sync) {

task syncOverrides(type: Sync) {
from 'overrides'
into "${mainSourceSet.output.classesDirs.first()}overrides"
into "${mainSourceSet.output.classesDirs.first()}/overrides"
}

task syncDeltas(type: Sync) {
Expand Down
2 changes: 1 addition & 1 deletion modules/Core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ task syncAssets(type: Sync) {

task syncOverrides(type: Sync) {
from 'overrides'
into "${mainSourceSet.output.classesDirs.first()}overrides"
into "${mainSourceSet.output.classesDirs.first()}/overrides"
}

task syncDeltas(type: Sync) {
Expand Down
2 changes: 1 addition & 1 deletion modules/CoreSampleGameplay/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ task syncAssets(type: Sync) {

task syncOverrides(type: Sync) {
from 'overrides'
into "${mainSourceSet.output.classesDirs.first()}overrides"
into "${mainSourceSet.output.classesDirs.first()}/overrides"
}

task syncDeltas(type: Sync) {
Expand Down
2 changes: 1 addition & 1 deletion templates/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ task syncAssets(type: Sync) {

task syncOverrides(type: Sync) {
from 'overrides'
into "${mainSourceSet.output.classesDirs.first()}overrides"
into "${mainSourceSet.output.classesDirs.first()}/overrides"
}

task syncDeltas(type: Sync) {
Expand Down

0 comments on commit d1ebe13

Please sign in to comment.