Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-15 19:49:30 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-15 19:49:30 (GMT)
commit02da7afee9ffd79775f6a571f4cf25a444d31ac9 (patch)
tree90c2a041417039afe21769d89a045e2a0fd00e08 /commands
parent699023b7d001f8262246c32f8d9676f97b321602 (diff)
Drop automatic PROFILE
It's bitrotten, might readd it later.
Diffstat (limited to 'commands')
-rwxr-xr-xcommands/run10
1 files changed, 0 insertions, 10 deletions
diff --git a/commands/run b/commands/run
index f3a5f4a..dfc8b7a 100755
--- a/commands/run
+++ b/commands/run
@@ -10,14 +10,4 @@ from devbot import config
common.setup()
-profile_env = os.environ.get("SUGAR_PROFILE", None)
-profile_pref = config.get_pref("PROFILE")
-
-if profile_env is not None:
- if profile_pref is None:
- config.set_pref("PROFILE", _get_random_id())
- elif profile_pref == profile_env:
- print "Cannot run two instances with the same profile."
- sys.exit(1)
-
run.run("sugar-runner")