mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-20 03:02:29 +01:00
4 lines
197 B
Bash
4 lines
197 B
Bash
# If NPM is not found don't silently fail.
|
|
(( $+commands[npm] )) && eval "$(npm completion 2>/dev/null)" || {
|
|
echo "oh-my-zsh (npm plugin): npm not found. Make sure you have it in your \$PATH"
|
|
}
|