Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/shell
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-28 12:20:13 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-28 12:20:13 (GMT)
commit12b29a9e5677beecdf932987395f7a5f15306af9 (patch)
treef06006ff73c30d6c61bfedf38a2888505b18f11c /commands/shell
parentc3f2927c630e19a408805e294e383d48cce45250 (diff)
Move bashrc to commands
Not much sense to keep an helpers dir for one file.
Diffstat (limited to 'commands/shell')
-rwxr-xr-xcommands/shell3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/shell b/commands/shell
index 818b160..71f3ceb 100755
--- a/commands/shell
+++ b/commands/shell
@@ -5,6 +5,7 @@ import os
import common
from devbot import shell
+from devbot import config
common.setup()
-shell.start(os.path.join(common.helpers_dir, "bashrc"))
+shell.start(os.path.join(config.commands_dir, "bashrc"))