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

import os
import sys

import common

from devbot import run
from devbot import build

common.setup(log_name="run")

if not build.build():
    sys.exit(1)

run.run("sugar-runner")