From b39eaa7cb5c52d7770971942bfb698c68bbe4d7b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 9 Mar 2005 07:27:47 +0000 Subject: [PATCH] Added .bashrc to the list of files to source in supybot-botchk. --- scripts/supybot-botchk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/supybot-botchk b/scripts/supybot-botchk index 76fe0c1ea..5ebf257af 100644 --- a/scripts/supybot-botchk +++ b/scripts/supybot-botchk @@ -114,7 +114,7 @@ if __name__ == '__main__': debug('Bot not found, starting.') home = os.environ['HOME'] inst = popen2.Popen4('sh') - for filename in ('.login', '.bash_profile', '.profile'): + for filename in ('.login', '.bash_profile', '.profile', '.bashrc'): filename = os.path.join(home, filename) if os.path.exists(filename): debug('Found %s, sourcing.' % filename)