From ecd9c7c884dcf78fd495837225ffea4ca49512c9 Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 22 May 2024 14:49:34 -0600 Subject: [PATCH] move version update script into shared --- scripts/app_config/{ => shared}/update_version.sh | 0 scripts/build_app.sh | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/app_config/{ => shared}/update_version.sh (100%) diff --git a/scripts/app_config/update_version.sh b/scripts/app_config/shared/update_version.sh similarity index 100% rename from scripts/app_config/update_version.sh rename to scripts/app_config/shared/update_version.sh diff --git a/scripts/build_app.sh b/scripts/build_app.sh index 5d953e9b6..63245d015 100755 --- a/scripts/build_app.sh +++ b/scripts/build_app.sh @@ -44,7 +44,7 @@ fi if printf '%s\0' "${APP_NAMED_IDS[@]}" | grep -Fxqz -- "${APP_NAMED_ID}"; then # shellcheck disable=SC1090 source "${APP_PROJECT_ROOT_DIR}/scripts/app_config/configure_${APP_NAMED_ID}.sh" - "${APP_PROJECT_ROOT_DIR}/scripts/app_config/update_version.sh" -v "${APP_VERSION_STRING}" -b "${APP_BUILD_NUMBER}" + "${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/update_version.sh" -v "${APP_VERSION_STRING}" -b "${APP_BUILD_NUMBER}" "${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/link_assets.sh" "${APP_NAMED_ID}" else echo "Invalid app id: ${APP_NAMED_ID}"