Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/build
blob: 69113941f00565e16f5f94feeea5ea7aa40ef538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python -u

import argparse
import sys

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:
    success = build.build_one(args.module)
else:
    success = build.build()

if not success:
    sys.exit(1)