From 97c1b8ad30e07f04dbfd7c458315cf7eba0bfd24 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 26 May 2022 09:11:35 -0700 Subject: [PATCH] [zsh] Fiddling with IO redirection --- zsh/func/do_init_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/func/do_init_functions b/zsh/func/do_init_functions index 57c34a6..30346c7 100644 --- a/zsh/func/do_init_functions +++ b/zsh/func/do_init_functions @@ -2,7 +2,7 @@ # Eryn Wells for func in ${(P)${1}}; do - if autoload -Uz $func &>-; then + if autoload -Uz $func &> -; then $func fi done