From 26f04832f5ecbd88bebbfe69461a0164298be9d2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 26 Nov 2008 12:50:37 -0500 Subject: [PATCH] Oops, forgot to dereference $GIT_PATH. Successful wgets now... --- _bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.26.2