Oops, forgot to dereference $GIT_PATH. Successful wgets now...
authorW. Trevor King <wking@drexel.edu>
Wed, 26 Nov 2008 17:50:37 +0000 (12:50 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 26 Nov 2008 17:50:37 +0000 (12:50 -0500)
_bashrc

diff --git a/_bashrc b/_bashrc
index 4abdf100c5a60cabf48619afee5fd5756a72ac55..d993c947180379ead1bdfd7daf46adc5c93c5219 100644 (file)
--- 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"