aboutsummaryrefslogtreecommitdiff
path: root/packages.gradle
diff options
context:
space:
mode:
authorOlaf Flebbe <o.flebbe@science-computing.de>2015-01-16 15:38:19 -0800
committerKonstantin Boudnik <cos@apache.org>2015-01-16 15:38:19 -0800
commit23b52ddf35dbb39989d674e03b70f66cd76d3bc4 (patch)
tree7232376f44c5314c846fc67095dc287c7146c636 /packages.gradle
parent3b13a811a8c6ad568a6a3a7b586be9f2fdf4e810 (diff)
BIGTOP-1599. Spelling of output
Signed-off-by: Konstantin Boudnik <cos@apache.org>
Diffstat (limited to 'packages.gradle')
-rw-r--r--packages.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages.gradle b/packages.gradle
index 8ac65297..a3a892cd 100644
--- a/packages.gradle
+++ b/packages.gradle
@@ -201,7 +201,7 @@ def genTasks = { target, variable ->
// Keeping the reference to deb task to be used later for correct sequencing
Task tdeb = task "$target-deb"(dependsOn: "${target}-sdeb",
- description: "Buildind DEB for $target artifacts",
+ description: "Building DEB for $target artifacts",
group: PACKAGES_GROUP) << {
if (new File(BOM_map[variable + '_TARGET_DEB'])?.exists()) {
println "\tNothing to do. Exiting..."
@@ -249,7 +249,7 @@ def genTasks = { target, variable ->
if (targets.size() > 0)
tdeb.mustRunAfter "${targets.get(targets.size() - 1)}-deb"
task "$target-sdeb" (dependsOn: ["${target}_vardefines", "${target}-tar"],
- description: "Buildind SDEB for $target artifacts",
+ description: "Building SDEB for $target artifacts",
group: PACKAGES_GROUP
) << {
if (new File(BOM_map[variable + '_TARGET_SDEB'])?.exists()) {
@@ -350,7 +350,7 @@ def genTasks = { target, variable ->
// Keeping the reference to task to be used later for correct sequencing
Task trpm = task "$target-rpm" (dependsOn: ["${target}-srpm"],
- description: "Buildind RPM for $target artifacts",
+ description: "Building RPM for $target artifacts",
group: PACKAGES_GROUP) << {
if (new File(BOM_map[variable + '_TARGET_RPM'])?.exists()) {
println "\tNothing to do. Exiting..."
@@ -387,7 +387,7 @@ def genTasks = { target, variable ->
if (targets.size() > 0)
trpm.mustRunAfter "${targets.get(targets.size() - 1)}-rpm"
task "$target-srpm" (dependsOn: ["${target}_vardefines" , "${target}-tar"],
- description: "Buildind SRPM for $target artifacts",
+ description: "Building SRPM for $target artifacts",
group: PACKAGES_GROUP) << {
if (new File(BOM_map[variable + '_TARGET_SRPM'])?.exists()) {
println "\tNothing to do. Exiting..."