Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-12 00:23:33 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-12 00:23:33 (GMT)
commit6d9c28ffdf4b1578721a96a0e43630a4d4df755c (patch)
tree561053eb8edfc6b85c9a4ee0e254af32e5d9e079
parent0d2652a26fc6e4dc7cc7044ce0c3f5e68bee353a (diff)
Improve descriptions
-rw-r--r--builders.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/builders.py b/builders.py
index 10c6478..917613e 100644
--- a/builders.py
+++ b/builders.py
@@ -85,7 +85,7 @@ def create_factory(config, env={}, full=False, distribute=False,
if snapshot:
factory.addStep(ShellCommand(command=["make", "snapshot"],
description="building snapshot",
- descriptionDone="snapshot",
+ descriptionDone="build snapshot",
warnOnFailure=True,
env=env))
@@ -95,7 +95,9 @@ def create_factory(config, env={}, full=False, distribute=False,
command = Interpolate("~/public_html/snapshots/upload-completed "
"%(prop:buildername)s %(prop:buildnumber)s")
- factory.addStep(MasterShellCommand(command=command))
+ factory.addStep(MasterShellCommand(command=command),
+ description="releasing snapshot",
+ descriptionDone="release snapshot")
return factory