From d595ea7479a89cad58200613c4893927428be034 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Mon, 8 Sep 2014 18:50:27 -0300 Subject: [PATCH] Fix typo from .bash_rc to .bashrc --- lib/langs/cli-beautify.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/langs/cli-beautify.coffee b/lib/langs/cli-beautify.coffee index 7e91d1bdc..f1bcfba6e 100644 --- a/lib/langs/cli-beautify.coffee +++ b/lib/langs/cli-beautify.coffee @@ -42,7 +42,7 @@ module.exports = (getCmd, isStdout) -> # by calling the external files that would usually # change the $PATH variable on user login. $path = "[ -f ~/.bash_profile ] && source ~/.bash_profile;" - $path += "[ -f ~/.bash_rc ] && source ~/.bash_rc;" + $path += "[ -f ~/.bashrc ] && source ~/.bashrc;" # See http://stackoverflow.com/a/638980/2578205 # for checking if file exists in Bash