From c59a55f8f2dc8c7a2db3b04c172690e4c469d55a Mon Sep 17 00:00:00 2001 From: coder3 Date: Thu, 13 Aug 2026 02:50:53 -0500 Subject: [PATCH] fix(framework): classify BusyBox timeout status (#1194) --- packages/mosaic/framework/tools/_scripts/mosaic-doctor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mosaic/framework/tools/_scripts/mosaic-doctor b/packages/mosaic/framework/tools/_scripts/mosaic-doctor index 30b95389..22ac52c8 100755 --- a/packages/mosaic/framework/tools/_scripts/mosaic-doctor +++ b/packages/mosaic/framework/tools/_scripts/mosaic-doctor @@ -173,7 +173,7 @@ if [[ -f "$framework_drift_checker" ]]; then set -e if [[ "$drift_rc" -eq 0 ]]; then pass "Installed framework tools match shipped source" - elif [[ "$drift_rc" -eq 124 || "$drift_rc" -eq 137 ]]; then + elif [[ "$drift_rc" -eq 124 || "$drift_rc" -eq 137 || "$drift_rc" -eq 143 ]]; then warn "CANNOT_ASSERT framework drift checker timed out after ${drift_timeout}s; continuing remaining doctor checks" else warn "Installed framework-tool drift detected (checker exit $drift_rc; no files changed)"