From 2067f931cb1ed17d0959682ebbf1b65f306a7d31 Mon Sep 17 00:00:00 2001 From: Sarabadu Date: Mon, 9 Dec 2013 10:58:19 -0200 Subject: [PATCH] updated for ubuntu users added .bashrc before .profile for ubuntu users --- install-gitless.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-gitless.sh b/install-gitless.sh index d2ee6e6..26c41dd 100755 --- a/install-gitless.sh +++ b/install-gitless.sh @@ -27,6 +27,8 @@ if [ ! -z "$1" ]; then else if [ -f "$HOME/.bash_profile" ]; then PROFILE="$HOME/.bash_profile" + elif [ -f "$HOME/.bashrc" ]; then + PROFILE="$HOME/.bashrc" elif [ -f "$HOME/.profile" ]; then PROFILE="$HOME/.profile" fi