From f3cabfc19152ddbdc7dbcfbefbe20751a86a249b Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Tue, 29 Jul 2025 12:32:22 -0400 Subject: [PATCH] build(install.sh): added check to boost after install deps --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 7b7e4c75..bd8f17cf 100755 --- a/install.sh +++ b/install.sh @@ -573,6 +573,9 @@ run_dependency_installer_tui() { done # Re-run check to update status check_compiler + log "${BLUE}[Info] Checking Boost library status (this may take a minute)...${NC}" + # If BOOST_CHECKED is set, we assume Boost was checked previously + check_boost >/dev/null 2>&1 || BOOST_OKAY=false } run_python_bindings_tui() {