diff options
author | SomeDer <48731521+SomeDer@users.noreply.github.com> | 2019-03-21 19:25:41 +0000 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-03-21 20:25:41 +0100 |
commit | 779ff24c2d0091ebbddae938d12b3f117123fc29 (patch) | |
tree | ac3709dc6281e0cfa09fbbe2b8c08575a9058970 /oh-my-zsh.sh | |
parent | 9509fd6a9193e32e5c2d460786253ba0e98fd741 (diff) | |
download | zsh-779ff24c2d0091ebbddae938d12b3f117123fc29.tar.gz zsh-779ff24c2d0091ebbddae938d12b3f117123fc29.tar.bz2 zsh-779ff24c2d0091ebbddae938d12b3f117123fc29.zip |
init: notify user if plugin isn't found (#7679)
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 4f6bfd5a5..fbb10dd82 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -83,6 +83,8 @@ for plugin ($plugins); do source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then source $ZSH/plugins/$plugin/$plugin.plugin.zsh + else + echo "Warning: plugin $plugin not found" fi done |