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

import os

from devbot import environ

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