Revert "Fix"

This reverts commit e00c59e066.
This commit is contained in:
Robert Morrison 2022-02-20 01:10:55 +00:00
parent e00c59e066
commit 03ccc8a36d
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

View File

@ -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="$?"