소스 검색

update install script

Chris 5 년 전
부모
커밋
c312927eae
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      utils/install.sh

+ 2 - 2
utils/install.sh

@@ -108,10 +108,10 @@ installextrapackages() { \
 echo 'Installing Nvim Mach 2'
 
 # install node and neovim support
-which node > /dev/null && echo "node installed, moving on..." || asktoinstallnode
+which node > /dev/null && echo "node installed, moving on..." || echo "please install node first" && exit
 
 # install pip
-which pip > /dev/null && echo "pip installed, moving on..." || asktoinstallpip
+which pip > /dev/null && echo "pip installed, moving on..." || echo "please install pip first" && exit
 
 # install pynvim
 pip list | grep pynvim > /dev/null && echo "pynvim installed, moving on..." || installpynvim