From 4510f4559e8d8217a06a508559519f70d9449187 Mon Sep 17 00:00:00 2001 From: blacksonic Date: Fri, 30 Oct 2015 22:10:32 +0100 Subject: [PATCH] [fix] add .bashrc to supported home files --- hook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hook b/hook index 8d53465..62436f3 100755 --- a/hook +++ b/hook @@ -15,7 +15,7 @@ function source_home_file { } if [[ -z "$HAS_NODE" ]]; then - source_home_file ".bash_profile" || source_home_file ".zshrc" || true + source_home_file ".bash_profile" || source_home_file ".zshrc" || source_home_file ".bashrc" || true fi NODE=`which node 2> /dev/null`