From 8fef236d646628132a652c528500452df78e3697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Tue, 8 Nov 2022 15:02:14 +0100 Subject: [PATCH] Changes in the installer --- .config/nvim/installer.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.config/nvim/installer.sh b/.config/nvim/installer.sh index 002806b..f93c202 100755 --- a/.config/nvim/installer.sh +++ b/.config/nvim/installer.sh @@ -12,7 +12,6 @@ function command_start() { timestamp "Command $* has been started." if ! "$*"; then err "Command $* went wrong." - exit fi timestamp "Command $* has been ended." } @@ -44,7 +43,7 @@ function install_shfmt() { function install_shellcheck() { # Install shellcheck [[ "$(uname)" == "Darwin" ]] && brew install shellcheck - emerge shellcheck + sudo emerge shellcheck-bin } function install_gopls() { @@ -55,11 +54,11 @@ function install_gopls() { function install_black() { # Install black pip install black --user - pip3 install black --user + pip3 install black --user --force } function install_ansible() { - pip3 install --pre --user ansible ansible-lint ansible-core + pip3 install --pre --user ansible ansible-lint ansible-core --force } function install_ansible-language-server() {