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

npm: only load completion if npm exists

This commit is contained in:
Marc Cornellà 2016-08-23 09:31:29 +02:00
parent 3b8d0ad9d0
commit 136a83433a

View file

@ -1,8 +1,10 @@
__NPM_COMPLETION_FILE="${ZSH_CACHE_DIR}/npm_completion"
(( $+commands[npm] )) && {
__NPM_COMPLETION_FILE="${ZSH_CACHE_DIR}/npm_completion"
if [[ ! -f $__NPM_COMPLETION_FILE ]]; then
npm completion >! $__NPM_COMPLETION_FILE || rm -f $__NPM_COMPLETION_FILE
fi
if [[ ! -f $__NPM_COMPLETION_FILE ]]; then
npm completion >! $__NPM_COMPLETION_FILE || rm -f $__NPM_COMPLETION_FILE
fi
}
source $__NPM_COMPLETION_FILE