fix(framework): detect installed tool drift (#1194) #1195

Merged
Mos merged 5 commits from fix/1194-framework-drift-detection into main 2026-08-13 10:43:12 +00:00
Showing only changes of commit f01be762af - Show all commits
@@ -167,7 +167,7 @@ if [[ -f "$framework_drift_checker" ]]; then
fi
if command -v timeout >/dev/null 2>&1; then
set +e
timeout --signal=TERM --kill-after=2 "${drift_timeout}s" \
timeout -s TERM -k 2 "${drift_timeout}s" \
python3 "$framework_drift_checker" --installed-root "$MOSAIC_HOME/tools"
drift_rc=$?
set -e