do not quote shell glob

main
Andrew Coleman 2022-05-10 15:34:50 -04:00
parent b1856d8b2f
commit 3fc403bf9a
1 changed files with 1 additions and 1 deletions

View File

@ -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"