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

import sys

import common

from devbot import run
from devbot import build
from devbot import system

common.setup(log_name="run")

if not system.check(lazy=True):
    sys.exit(1)

if not build.pull(lazy=True):
    sys.exit(1)

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

run.run("sugar-runner")