Exports should export anything for now.

This commit is contained in:
Stanislav Nikitin 2015-03-14 21:19:55 +05:00
parent 21496f2b17
commit 3c9ea5f437

View File

@ -1,8 +1,8 @@
for config_file in `ls ${CONFIG_PATH}/zsh/exports | sort | grep zsh`; do
for config_file in `ls ${CONFIG_PATH}/zsh/exports | sort`; do
source ${CONFIG_PATH}/zsh/exports/${config_file}
done
for config_file in `ls ${HOME}/.zsh-config.d/exports | sort | grep zsh`; do
for config_file in `ls ${HOME}/.zsh-config.d/exports | sort`; do
source ${HOME}/.zsh-config.d/exports/${config_file}
done