From 7a0588197220072a767f9b6604712e8071c3a5fb Mon Sep 17 00:00:00 2001 From: shijing xian Date: Thu, 8 Jan 2026 23:34:47 +0800 Subject: [PATCH] fix the missing bundle and archive cmd for release-examples --- build.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build.sh b/build.sh index 0a01224..6e3868b 100755 --- a/build.sh +++ b/build.sh @@ -322,6 +322,12 @@ case "${cmd}" in PRESET="${OS_TYPE}-debug-examples" configure build + if [[ "${DO_BUNDLE}" == "1" ]]; then + install_bundle + if [[ "${DO_ARCHIVE}" == "1" ]]; then + archive_bundle + fi + fi ;; release) BUILD_TYPE="Release" @@ -342,6 +348,12 @@ case "${cmd}" in PRESET="${OS_TYPE}-release-examples" configure build + if [[ "${DO_BUNDLE}" == "1" ]]; then + install_bundle + if [[ "${DO_ARCHIVE}" == "1" ]]; then + archive_bundle + fi + fi ;; clean) clean