From 8011e3510b3e80135c8cbc621c1ca82f051d3824 Mon Sep 17 00:00:00 2001 From: buhl <221842+buhl@users.noreply.github.com> Date: Sat, 11 Apr 2020 11:59:25 +0200 Subject: [PATCH] fixed globbing error --- bash_it.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_it.sh b/bash_it.sh index 03b9ec0b4b..f39122ffee 100755 --- a/bash_it.sh +++ b/bash_it.sh @@ -51,7 +51,7 @@ done #Load external vendor libraries # See "${BASH_IT}/vendors/Makefile for comments -for _bash_it_config_file in "${BASH_IT}/vendors/*/*.bash" +for _bash_it_config_file in ${BASH_IT}/vendors/*/*.bash do source "$_bash_it_config_file" done