From a8948c11e41506ee9991f5b51109818e182090ca Mon Sep 17 00:00:00 2001 From: ReturnFI <151555003+ReturnFI@users.noreply.github.com> Date: Fri, 12 Sep 2025 12:03:17 +0000 Subject: [PATCH] feat: inform users about nodb version on AVX check failure --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 025f1fb..1a86468 100644 --- a/install.sh +++ b/install.sh @@ -78,6 +78,9 @@ check_os_version() { log_success "CPU supports AVX instruction set." else log_error "CPU does not support the required AVX instruction set for MongoDB." + log_info "For systems without AVX support, you can use the 'nodb' version of the panel." + log_info "To install it, please run the following command:" + echo -e "${YELLOW}bash <(curl -sL https://raw.githubusercontent.com/ReturnFI/Blitz/nodb/install.sh)${NC}" log_error "Installation aborted." exit 1 fi