From 248bcfeda675224f93f0c4d1d9bc2240564fba94 Mon Sep 17 00:00:00 2001 From: rkiel Date: Sat, 21 Nov 2020 11:26:50 -0500 Subject: [PATCH] refactor: updates --- install/bin/setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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