Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/run
blob: e66eaf45cf2b534234c4192a30ec3b2c77732e63 (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 build

common.setup(log_name="run")

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

run.run("sugar-runner")