diff options
author | Chris <[email protected]> | 2020-05-12 14:21:55 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-12 14:21:55 -0400 |
commit | 7415bdcff5777743edf15f0cbd86cdc7c1fc2130 (patch) | |
tree | c167739341dadb53a367b5580506e3206f2bd4d5 | |
parent | dbb36867a92262b3d54c237e6123276057c858df (diff) |
install script update
-rwxr-xr-x | utils/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/install.sh b/utils/install.sh index bd3fec3b..c2e01522 100755 --- a/utils/install.sh +++ b/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..." || echo "please install node first" +which node > /dev/null && echo "node installed, moving on..." # install pip -which pip > /dev/null && echo "pip installed, moving on..." || echo "please install pip first" +which pip > /dev/null && echo "pip installed, moving on..." # install pynvim pip list | grep pynvim > /dev/null && echo "pynvim installed, moving on..." || installpynvim |