From 3fc403bf9a7e844ff0cdaead071341cb605dfe27 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Tue, 10 May 2022 15:34:50 -0400 Subject: [PATCH] do not quote shell glob --- dot_bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_bashrc b/dot_bashrc index 1337816..1db1657 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -3,7 +3,7 @@ # User specific aliases and functions if [ -d "$HOME/.config/bash" ]; then - for rc in "$HOME/.config/bash/*"; do + for rc in $HOME/.config/bash/*; do if [ -f "$rc" ]; then # shellcheck source=/dev/null . "$rc"