From: W. Trevor King Date: Wed, 26 Nov 2008 17:50:37 +0000 (-0500) Subject: Oops, forgot to dereference $GIT_PATH. Successful wgets now... X-Git-Tag: v0.3~100 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=26f04832f5ecbd88bebbfe69461a0164298be9d2;p=dotfiles-framework.git Oops, forgot to dereference $GIT_PATH. Successful wgets now... --- diff --git a/_bashrc b/_bashrc index 4abdf10..d993c94 100644 --- a/_bashrc +++ b/_bashrc @@ -160,7 +160,7 @@ fi # Check for Git (versioning system) so we know how to get our .dotfiles GIT_PATH=`which git` -if [ -n "GIT_PATH" ];then +if [ -n "$GIT_PATH" ];then GIT_INSTALLED="true" else GIT_INSTALLED="false"