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

import os

import common

from devbot import shell
from devbot import config
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"))