From 4317bfd61e6417af798b1d4273e1f6f211731431 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 26 May 2022 14:50:19 -0700 Subject: [PATCH] [zsh] This IO redirection was bad; redirection stdout and err is >&, not &> --- 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 30346c7..69d437d 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