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

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

run.run("sugar-runner")