Skip to content

Commit 6b25110

Browse files
committed
[#72532] scripts: prepare_zephyr_env: Added possibility to only install Zephyr SDK
Signed-off-by: Grzegorz Latosinski <[email protected]>
1 parent 5f649f5 commit 6b25110

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

scripts/prepare_zephyr_env.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@ cd ${ZEPHYR_SDK_PATH}
7676
./setup.sh -h
7777
./setup.sh -c
7878

79+
cd -
80+
81+
if [ $ZEPHYR_SDK_ONLY -eq 1 ]; then
82+
echo "Zephyr SDK installed successfully"
83+
exit 0
84+
fi
85+
7986
cd ${PROJECT_ROOT}
8087

8188
# setup Zephyr project

0 commit comments

Comments
 (0)