Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/pull
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-26 17:16:07 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-26 18:17:29 (GMT)
commitdab868b20b936add86967eafe32711413b80dd6e (patch)
tree60fa49f59a8de148bd3fad607f688851678bbde8 /commands/pull
parent67d36d7eed2bf07063ba9cc7b3720f1efa4560ce (diff)
Rework logging and output
Use the logs for all the commands output. Tail the log if there is an error. Create a link to the latest log so that buildbot can find it easily.
Diffstat (limited to 'commands/pull')
-rwxr-xr-xcommands/pull2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/pull b/commands/pull
index 5989be6..cca1ff2 100755
--- a/commands/pull
+++ b/commands/pull
@@ -11,7 +11,7 @@ parser = argparse.ArgumentParser()
parser.add_argument("module", nargs="?", help="name of the module to pull")
args = parser.parse_args()
-common.setup()
+common.setup(log_name="pull")
if args.module:
success = build.pull_one(args.module)