Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-16 09:18:33 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-16 09:18:33 (GMT)
commit2622f59658c42594f1efb0d767b89393de75ba0f (patch)
treeedfcd83c0bb181e35a8cf59199f5774d48b8dbde
parentd50cf9e59b0c1b21995b958fbe89f3c9f1cb3c36 (diff)
Drop run command
-rwxr-xr-xcommands/run9
-rw-r--r--devbot/run.py9
2 files changed, 0 insertions, 18 deletions
diff --git a/commands/run b/commands/run
deleted file mode 100755
index b1f76aa..0000000
--- a/commands/run
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/python
-
-import common
-import sys
-
-from devbot import run
-
-common.setup()
-run.run(sys.argv[1:])
diff --git a/devbot/run.py b/devbot/run.py
deleted file mode 100644
index c27862f..0000000
--- a/devbot/run.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/python -u
-
-import os
-
-from devbot import environ
-
-def run(args):
- environ.setup()
- os.execlp(args[0], *args)