Skip to content

Commit

Permalink
build: fix closure typo
Browse files Browse the repository at this point in the history
  • Loading branch information
coolya committed Jun 24, 2021
1 parent b63162d commit 464ed94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/com.mbeddr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ private static void configureRepositories(Project project) {
}

//mbeddr build is "master" also for maintenance branches
//using the clouse to delay evaluate from configuration to execution phase is important because the
//using the closure to delay evaluate from configuration to execution phase is important because the
//mbeddrBuild property is created by a "subproject" block which is executed after this script is configured.
//if no closure is used the build script won't compile.
if({project.mbeddrBuild}() == "master") {
Expand Down
2 changes: 1 addition & 1 deletion build/com.mbeddr/languages/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ task publishMbeddrToLocal (dependsOn: ['publishMbeddrPublicationToMavenLocal',
':build:com.mbeddr:platform:publishMbeddrPlatformToLocal']) {}

//mbeddr build is "master" also for maintenance branches
//using the clouse to delay evaluate from configuration to execution phase is important because the
//using the closure to delay evaluate from configuration to execution phase is important because the
//mbeddrBuild property is created by a "subproject" block which is executed after this script is configured.
//if no closure is used the build script won't compile.
if({project.mbeddrBuild}() == "master") {
Expand Down
2 changes: 1 addition & 1 deletion build/com.mbeddr/platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ publishing {
}

//mbeddr build is "master" also for maintenance branches
//using the clouse to delay evaluate from configuration to execution phase is important because the
//using the closure to delay evaluate from configuration to execution phase is important because the
//mbeddrBuild property is created by a "subproject" block which is executed after this script is configured.
//if no closure is used the build script won't compile.
if({project.mbeddrBuild}() == "master") {
Expand Down

0 comments on commit 464ed94

Please sign in to comment.