silenced bash profile.d when profile.d is empty

This commit is contained in:
Dax T. Games
2016-03-06 15:05:40 -06:00
parent df768f3c5e
commit 722f8b7745
2 changed files with 3 additions and 3 deletions

4
vendor/cmder_exinit vendored
View File

@ -58,9 +58,9 @@ if [ ! "$CMDER_ROOT" = "" ] ; then
unset profile_d_scripts
pushd ${CMDER_ROOT}/config/profile.d >/dev/null
if [ ! "x${ZSH_VERSION}" = "x" ]; then
profile_d_scripts=$(ls ${CMDER_ROOT}/config/profile.d/*.zsh) 2>/dev/null
profile_d_scripts=$(ls ${CMDER_ROOT}/config/profile.d/*.zsh 2>/dev/null)
elif [ ! "x${BASH_VERSION}" = "x" ]; then
profile_d_scripts=$(ls ${CMDER_ROOT}/config/profile.d/*.sh) 2>/dev/null
profile_d_scripts=$(ls ${CMDER_ROOT}/config/profile.d/*.sh 2>/dev/null)
fi
if [ ! "x${profile_d_scripts}" = "x" ] ; then