fix: no longer attempt auto install of depdencies

This commit is contained in:
Price Hiller 2022-07-30 23:15:13 -05:00
parent 925f26ab8b
commit da4d362141

View File

@ -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}"