Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/run
blob: ef8e9af63b8ffdff1aaaae43f49e8a4b8c12082c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/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")