From c8a38abaf9094eb40af9e6e968e51bb4cd07567b Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sun, 20 Mar 2022 17:03:15 +0000 Subject: [PATCH] Fix mcfly loading --- zshrc.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zshrc.zsh b/zshrc.zsh index 827e74b..9da50e6 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -127,8 +127,8 @@ fi test -e $HOME/git/forgit/forgit.plugin.zsh && source ~/git/forgit/forgit.plugin.zsh # McFly -if type mcfly &> /dev/null; then - eval $(mcfly init zsh) +if type mcfly > /dev/null; then + eval "$(mcfly init zsh)" fi # Init starship prompt -- https://starship.rs