From e54f58230d6a6d452930ad3921266f12e30ba0c9 Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Sat, 16 May 2026 19:51:45 +0200 Subject: [PATCH] =?UTF-8?q?ci/platform:=20Fix=20the=20=E2=80=9CRepository?= =?UTF-8?q?=20not=20found=E2=80=9D=20error=20for=20kconfig-frontends?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MSYS2 Fix Repository not found https://bitbucket.org/nuttx/tools.git Now use URL https://github.com/patacongo/tools Signed-off-by: simbit18 --- tools/ci/platforms/msys2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/platforms/msys2.sh b/tools/ci/platforms/msys2.sh index ce8463e84fe35..7788126c02829 100755 --- a/tools/ci/platforms/msys2.sh +++ b/tools/ci/platforms/msys2.sh @@ -123,7 +123,7 @@ kconfig_frontends() { add_path "${NUTTXTOOLS}"/kconfig-frontends/bin if [ ! -f "${NUTTXTOOLS}/kconfig-frontends/bin/kconfig-conf" ]; then - git clone --depth 1 https://bitbucket.org/nuttx/tools.git "${NUTTXTOOLS}"/nuttx-tools + git clone --depth 1 https://github.com/patacongo/tools "${NUTTXTOOLS}"/nuttx-tools cd "${NUTTXTOOLS}"/nuttx-tools/kconfig-frontends ./configure --prefix="${NUTTXTOOLS}"/kconfig-frontends \ --disable-kconfig --disable-nconf --disable-qconf \