diff --git a/install/bin/setup b/install/bin/setup index 65b5320..82ea4c4 100755 --- a/install/bin/setup +++ b/install/bin/setup @@ -9,7 +9,7 @@ GIT="~/GitHub/git/git" if [ "$2" == "zsh" ] ; then FILE=~/.zprofile echo >> $FILE - if [ ! -z "$1" ]; then + if [ ! -z "$1" ] ; then echo "export FEATURE_USER=$1" >> $FILE fi echo "GIT_UTILITIES_BIN=${REPO}/bin" >> $FILE @@ -25,7 +25,7 @@ if [ "$2" == "zsh" ] ; then else FILE=~/.bash_profile echo >> $FILE - if [ ! -z "$1" ]; then + if [ ! -z "$1" ] ; then echo "export FEATURE_USER=$1" >> $FILE fi echo "GIT_UTILITIES_BIN=${REPO}/bin" >> $FILE