From 8956a666c3fb455de4cdb167611bc478e20948da Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Fri, 23 Nov 2012 18:29:55 +0000 Subject: Fix shell prompt string on ubuntu It was getting overwritten by ~/.bashrc --- (limited to 'commands/shell') diff --git a/commands/shell b/commands/shell index e588e06..818b160 100755 --- a/commands/shell +++ b/commands/shell @@ -1,8 +1,10 @@ #!/usr/bin/python +import os + import common from devbot import shell common.setup() -shell.start() +shell.start(os.path.join(common.helpers_dir, "bashrc")) -- cgit v0.9.1