Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/helpers/build
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-28 10:37:06 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-28 10:37:06 (GMT)
commita3335caea2879bea7d62d51a9a44e1340005293b (patch)
treeab24250a49def67a01e4cb37ef6fd00c68c27d61 /commands/helpers/build
parent7265563b8bb9fb9e74b5564fdc5dde5b7d68594a (diff)
More generic logging approach
Diffstat (limited to 'commands/helpers/build')
-rwxr-xr-xcommands/helpers/build18
1 files changed, 0 insertions, 18 deletions
diff --git a/commands/helpers/build b/commands/helpers/build
deleted file mode 100755
index a8405c8..0000000
--- a/commands/helpers/build
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python -u
-
-import argparse
-
-import common
-
-from devbot import build
-
-parser = argparse.ArgumentParser()
-parser.add_argument("module", nargs="?", help="name of the module to build")
-args = parser.parse_args()
-
-common.setup()
-
-if args.module:
- build.build_one(args.module)
-else:
- build.build()