This should fix problems with sourcing things from home directory and warnings, that appear on FreeBSD.

This commit is contained in:
2015-03-21 16:32:25 +05:00
parent 3c9ea5f437
commit 5bdc4ece37
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -3,6 +3,8 @@ for config_file in `ls ${CONFIG_PATH}/zsh/exports | sort`; do
done
for config_file in `ls ${HOME}/.zsh-config.d/exports | sort`; do
source ${HOME}/.zsh-config.d/exports/${config_file}
if [ -f ${HOME}/.zsh-config.d/exports/${config_file} ]; then
source ${HOME}/.zsh-config.d/exports/${config_file}
fi
done