From 03ccc8a36d44f1266b1317bfc0cedc57b38c1df0 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Sun, 20 Feb 2022 01:10:55 +0000 Subject: [PATCH] Revert "Fix" This reverts commit e00c59e0666458d1a4aef42f691fc502622c44f8. --- ZshPlug.zsh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ZshPlug.zsh b/ZshPlug.zsh index fc787c7..4e69d2e 100644 --- a/ZshPlug.zsh +++ b/ZshPlug.zsh @@ -121,8 +121,9 @@ Plug() { # test for git as needed to get plugins command -v git > /dev/null || { echo "Git is not installed" >&2 ; return 1; } - ## No need to check if plugins has content since if there are no plugins this does not run anything - for Plugin in $ZSH_PLUG_Plugins; do + ## No need to check if plugins has content since if there are no plugins this does not run anythinh + + for Plugin in $Plugins; do echo "$Plugin" pluginTest "$Plugin" local exitcode="$?"