From fcdf80b1c02b7e976b68bd89eea51060c6a2a044 Mon Sep 17 00:00:00 2001 From: Alex Kraasch Date: Thu, 15 Feb 2024 21:36:20 +0100 Subject: [PATCH] Fix spelling. --- src/expand_globs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expand_globs b/src/expand_globs index 108ded1..3faa699 100755 --- a/src/expand_globs +++ b/src/expand_globs @@ -5,7 +5,7 @@ function main() { if $(test -z "$BDIRBS_HIDE_PERM"); then cat "$DIR" | sed "s|^~|$HOME|" | grep -v '\*' cat "$DIR" | sed "s|^~|$HOME|" | grep '\*' | while read x; do - expand_glob_py "$x" + expand_globs_py "$x" done fi }