From 3c059bd2985f7000d44a6c34247256f31dbfd5a4 Mon Sep 17 00:00:00 2001 From: oxmc7769 Date: Wed, 23 Apr 2025 03:54:33 -0700 Subject: [PATCH] Remove arm only EXPORT_IMAGE check --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d4c0005..3b5cb65 100755 --- a/build.sh +++ b/build.sh @@ -213,7 +213,7 @@ run_stage(){ unmount "${WORK_DIR}/${STAGE}" if [ ! -f SKIP_IMAGES ]; then - if [ -f "${STAGE_DIR}/EXPORT_IMAGE" ] && [[ "${ARCH}" == "arm64" || "${ARCH}" == "armhf" ]]; then + if [ -f "${STAGE_DIR}/EXPORT_IMAGE" ]; then EXPORT_DIRS="${EXPORT_DIRS} ${STAGE_DIR}" fi fi