Skip to content

Commit

Permalink
fix: ./gradlew buildEdge error (#2651)
Browse files Browse the repository at this point in the history
  • Loading branch information
katsuya authored Jun 1, 2024
1 parent 6937f29 commit 217f089
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ task cleanEdge() {
description 'Clean all Edge-Bundles'

subprojects.each { proj ->
if( proj.name ==~ /io.openems.(common|edge|shared|wrapper).*/ ) {
if( proj.name ==~ /io.openems.(common|edge|oem|shared|wrapper).*/ ) {
if (proj.tasks.findAll { it.name == 'clean' }) {
dependsOn(proj.clean)
}
Expand Down Expand Up @@ -134,7 +134,7 @@ task assembleEdge() {
description 'Assemble all Edge-Bundles'

subprojects.each { proj ->
if( proj.name ==~ /io.openems.(common|edge|shared|wrapper).*/ ) {
if( proj.name ==~ /io.openems.(common|edge|oem|shared|wrapper).*/ ) {
if (proj.tasks.findAll { it.name == 'assemble' }) {
dependsOn(proj.assemble)
}
Expand Down

0 comments on commit 217f089

Please sign in to comment.