Fixed typo breaking OS and hostname binding script.

This commit is contained in:
James Patrick 2019-06-28 20:16:14 -04:00
parent b0396bcda4
commit 6c27eb41e3

View File

@ -68,15 +68,16 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=7"
# This will load the specified zsh files if they exist in the $ZDIR/environment directory. # This will load the specified zsh files if they exist in the $ZDIR/environment directory.
# It will load based on hostname & uname. # It will load based on hostname & uname.
env_loader(){ env_loader(){
[ -e ${ZDIR}/environment/$OSTYPE/$1 ] && source ${ZDIR}/environment/$OSTYPE/$1 [ -e ${ZDIR}/environment/os/$OSTYPE/$1 ] && source ${ZDIR}/environment/os/$OSTYPE/$1
[ -e ${ZDIR}/environment/$HOST/$1 ] && source ${ZDIR}/environment/$HOST/$1 [ -e ${ZDIR}/environment/host/$HOST/$1 ] && source ${ZDIR}/environment/host/$HOST/$1
} }
user_script_dir="~/.scripts" user_script_dir=~/.scripts
if [ -d $user_script_dir ] ; then if [ -d $user_script_dir ] ; then
PATH="$user_script_dir:$PATH" PATH="$user_script_dir:$PATH"
fi fi
env_loader zshenv env_loader zshenv
# Dedup path. # Dedup path.