Fix bug in update

I changed some environment variable names and forgot to update the
updater to use the new name
This commit is contained in:
Robert Morrison 2022-07-14 02:41:08 +01:00
parent bfba9db4b7
commit a60119faff
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

View File

@ -105,7 +105,7 @@ ZSH_PLUG_pluginUpdate() {
## Update all Plugins ## Update all Plugins
## Should really do one at a time ## Should really do one at a time
## Might not work with new config setup ## Might not work with new config setup
for Plugin in $Plugins; do for Plugin in ${ZSH_PLUG_plugins[@]}; do
echo "Updating $Plugin" echo "Updating $Plugin"
local InstallDir="$pluginDir/$Plugin" local InstallDir="$pluginDir/$Plugin"
pushd $InstallDir pushd $InstallDir