From da4d362141523526edc4c4ee5811adb0f3283565 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 30 Jul 2022 23:15:13 -0500 Subject: [PATCH] fix: no longer attempt auto install of depdencies --- install.bash | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.bash b/install.bash index fd006fa..28e914c 100644 --- a/install.bash +++ b/install.bash @@ -130,8 +130,7 @@ check-script-deps() { local ret_code=0 for cmd in "${commands_to_check[@]}"; do if ! command -v "${cmd}" >/dev/null; then - log "warning" "Could not find command: ${GREEN}${cmd}${RESET_BOLD}, attempting automatic installation" - install-from-pkg-mngr "${cmd}" + log "error" "Could not find command: ${GREEN}${cmd}${RESET_BOLD}, ensure you install this dependency" ret_code=1 else log "info" "Found dependency ${GREEN}${cmd}${RESET_BOLD}"