Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/run
blob: 0097e2bc7b353b357b33dc5505ff879b8f3a273b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

import sys

import common

from devbot import run
from devbot import main

common.setup(log_name="run")

if not main.run_build():
    sys.exit(1)

run.run("sugar-runner")