feat: inform users about nodb version on AVX check failure

This commit is contained in:
ReturnFI
2025-09-12 12:03:17 +00:00
parent b913b66d1a
commit a8948c11e4

View File

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