From 8595d87a01cf798fb1739cdfc94019ad0ac11f9f Mon Sep 17 00:00:00 2001 From: Tom Frenzel <40773830+tomfrenzel@users.noreply.github.com> Date: Wed, 2 Sep 2026 11:14:18 +0200 Subject: [PATCH] fix(openthread-br): clean build directory before update (#16949) --- ct/openthread-br.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ct/openthread-br.sh b/ct/openthread-br.sh index afff2823b..0e14c2872 100644 --- a/ct/openthread-br.sh +++ b/ct/openthread-br.sh @@ -58,7 +58,10 @@ function update_script() { msg_ok "Deployed GitHub release OpenThread-BR (${CHECK_UPDATE_RELEASE#v})" msg_info "Rebuilding OpenThread Border Router (Patience)" - cd /opt/ot-br-posix/build + cd /opt/ot-br-posix + rm -rf build + mkdir build + cd build $STD cmake -GNinja \ -DBUILD_TESTING=OFF \ -DCMAKE_INSTALL_PREFIX=/usr \