From b1ef8554b988764be4a3f4fbcfcd1ecce84d7df4 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Sun, 20 Feb 2022 00:41:04 +0000 Subject: [PATCH] Testing Update --- ZshPlug.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ZshPlug.zsh b/ZshPlug.zsh index dd1ca25..4e69d2e 100644 --- a/ZshPlug.zsh +++ b/ZshPlug.zsh @@ -115,6 +115,7 @@ ZSH_PLUG_pluginUpdate() { } Plug() { + echo "Running ZshPlug" #Test for plugin directory and make if needed [ ! -d "$pluginDir" ] && { echo "Plugin directory doesn't exist making it now"; mkdir -p "$pluginDir"; } # test for git as needed to get plugins @@ -123,6 +124,7 @@ Plug() { ## 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="$?" case $exitcode in @@ -160,7 +162,6 @@ Plug() { done } -echo "Running ZshPlug" Plug ## Clean up non-required variables and functions