From af6b02d0a5bb7a1dc2175446a44788304663f63b Mon Sep 17 00:00:00 2001 From: urob <978080+urob@users.noreply.github.com> Date: Fri, 20 Jan 2023 11:48:21 -0500 Subject: [PATCH] Keep SDK version fixed at 0.15.2 --- scripts/zmk_local_install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/zmk_local_install.sh b/scripts/zmk_local_install.sh index bc9fcd2..72d1c8a 100755 --- a/scripts/zmk_local_install.sh +++ b/scripts/zmk_local_install.sh @@ -13,8 +13,9 @@ sudo apt-get install --yes --no-install-recommends git cmake ninja-build gperf \ ### Step 3: Install Zephyr SDK # Find latest release version -ZSDK_URL="https://github.com/zephyrproject-rtos/sdk-ng/releases/latest" -export ZSDK_VERSION="$(curl -fsSLI -o /dev/null -w %{url_effective} ${ZSDK_URL} | sed 's/^.*v//')" +# ZSDK_URL="https://github.com/zephyrproject-rtos/sdk-ng/releases/latest" +# ZSDK_VERSION="$(curl -fsSLI -o /dev/null -w %{url_effective} ${ZSDK_URL} | sed 's/^.*v//')" +ZSDK_VERSION="0.15.2" # Download and verify latest Zephyr SDK bundle cd ~/.local