refactor: updates

This commit is contained in:
rkiel
2020-11-21 11:26:50 -05:00
parent 4cfb8975ad
commit 248bcfeda6

View File

@@ -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