Merge pull request #2503 from flatcar/krnowak/local-x-fix

build_library/build_image_util: Fix local exporting
This commit is contained in:
Krzesimir Nowak 2024-12-04 17:35:58 +01:00 committed by GitHub
commit 387be3bfcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,7 @@ zip_update_tools() {
info "Generating update tools zip"
# Make sure some vars this script needs are exported
local -x REPO_MANIFESTS_DIR SCRIPTS_DIR
local -x REPO_MANIFESTS_DIR=${REPO_MANIFESTS_DIR} SCRIPTS_DIR=${SCRIPTS_DIR}
"${BUILD_LIBRARY_DIR}/generate_au_zip.py" \
--arch "$(get_sdk_arch)" --output-dir "${BUILD_DIR}" --zip-name "${update_zip}"
}