From 52a08a37cbca768ea1426aeb4f320bee036f70bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Mart=C3=ADn?= Date: Fri, 25 Oct 2024 15:56:36 +0200 Subject: [PATCH] When building a snapshot of the SDK bindings, don't build the app by default too --- tools/sdk/build_rust_sdk.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sdk/build_rust_sdk.sh b/tools/sdk/build_rust_sdk.sh index d626e62bac..f0c0378333 100755 --- a/tools/sdk/build_rust_sdk.sh +++ b/tools/sdk/build_rust_sdk.sh @@ -54,8 +54,8 @@ if [ "${sdkCorrect}" != "yes" ]; then fi # Ask if the user wants to build the app after -read -p "Do you want to build the app after (yes/no) default to yes? " buildApp -buildApp=${buildApp:-yes} +read -p "Do you want to build the app after (yes/no) default to no? " buildApp +buildApp=${buildApp:-no} cd "${elementPwd}"