Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/shell
blob: 664f21807e0edb47c1908f068fe4bcaea2f28883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

import os

import common

from devbot import shell
from devbot import environ

common.setup()

commands_dir = os.path.join(common.base_dir, "commands")

environ.add_path("PATH", commands_dir)
shell.start(os.path.join(commands_dir, "bashrc"))