1
0
Fork 0

Source correct module's `init.zsh`

Now that modules can be located in different directories, the `init.zsh` should be loaded from the `$module_location` and not `$ZPREZTODIR/modules/$pmodule`
pull/1515/head^2
Denys Digtiar 7 years ago committed by Kaleb Elwert
parent 221c6cd128
commit 64d6ae805c

@ -123,8 +123,8 @@ function pmodload {
done done
} }
if [[ -s "$ZPREZTODIR/modules/$pmodule/init.zsh" ]]; then if [[ -s "${pmodule_location}/init.zsh" ]]; then
source "$ZPREZTODIR/modules/$pmodule/init.zsh" source "${pmodule_location}/init.zsh"
fi fi
if (( $? == 0 )); then if (( $? == 0 )); then

Loading…
Cancel
Save