Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/run.py
blob: 1bbe695666e8e1aac49fbffb3bfe0e4052fa16ce (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python -u

import os

from devbot import environ

def run_command(args):
    environ.setup()
    os.execlp(args[0], *args)