Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/run.py')
-rw-r--r--devbot/run.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/devbot/run.py b/devbot/run.py
new file mode 100644
index 0000000..c27862f
--- /dev/null
+++ b/devbot/run.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python -u
+
+import os
+
+from devbot import environ
+
+def run(args):
+ environ.setup()
+ os.execlp(args[0], *args)