Add filtering to the $2 input in addition to $1

pull/1283/head
Travis Swicegood 2018-12-05 21:54:59 -06:00
parent 5b8f8d874e
commit 7b32dd6424
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ if [ "$1" != "false" ] && [ -d "./enabled" ]; then
fi
if [ ! -z "${2}" ] && [ -d "${2}/enabled" ]; then
if [ ! -z "${2}" ] && [[ "${2}" =~ ^(aliases|completion|plugins)$ ]] && [ -d "${2}/enabled" ]; then
# TODO: We should warn users they're using legacy enabling
for _bash_it_config_file in $(sort <(compgen -G "./${2}/enabled/*.bash")); do
if [ -e "$_bash_it_config_file" ]; then