浏览代码

fix(nvm): remove nvm not found verbose message

Carlo Sala 10 月之前
父节点
当前提交
7cf00a0b5c
共有 1 个文件被更改,包括 1 次插入7 次删除
  1. 1 7
      plugins/nvm/nvm.plugin.zsh

+ 1 - 7
plugins/nvm/nvm.plugin.zsh

@@ -16,13 +16,7 @@ fi
 # Note: nvm is a function so we need to use `which`
 which nvm &>/dev/null && return
 
-if [[ -z "$NVM_DIR" ]]; then 
-  echo "[oh-my-zsh] nvm installation cannot be found"
-  echo "[oh-my-zsh] set NVM_DIR to your installation"
-  return
-fi
-if [[ ! -f "$NVM_DIR/nvm.sh" ]]; then 
-  echo "[oh-my-zsh] nvm.sh does not exist in $NVM_DIR"
+if [[ -z "$NVM_DIR" ]] || [[ ! -f "$NVM_DIR/nvm.sh" ]]; then 
   return
 fi