0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

init: more informative warning if plugin not found (#7727)

This commit is contained in:
Greg 2019-04-03 12:20:16 +01:00 committed by Marc Cornellà
parent 831fba4ee4
commit 3a6bf6bd26

View file

@ -53,7 +53,7 @@ for plugin ($plugins); do
elif is_plugin $ZSH $plugin; then
fpath=($ZSH/plugins/$plugin $fpath)
else
echo "Warning: plugin $plugin not found"
echo "[oh-my-zsh] plugin '$plugin' not found"
fi
done