From b085f92c07219d2ba308b09461e2b40915faf6c9 Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Fri, 10 Mar 2023 18:32:22 +0530 Subject: [PATCH] Fix a mistake in the dependency management section of the installer Changes to be committed: modified: install.sh --- install.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index a120808..837b7e4 100755 --- a/install.sh +++ b/install.sh @@ -1,21 +1,19 @@ #!/bin/bash -NPMDP="" if command -v nvim >/dev/null 2>&1 ; then - NPMDP="pyright prettier" + : else echo "No installation of Neovim was found" echo "Quitting now..." exit 127 fi - +NPMDP="" if command -v npm >/dev/null 2>&1 ; then - : + NPMDP="pyright prettier" else echo "No installation of npm was found" - echo "Quitting now..." - exit 127 + echo "Some lsp packages won't automatically be installed" fi