From ded6d1e319623d85b4582aeea9e5bc52fc89a340 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Sun, 16 Apr 2023 16:04:42 +0200 Subject: [PATCH] artifact: rootfs: fix `artifact_rootfs_config_dump()` with added rootfs pkgs --- lib/functions/artifacts/artifact-rootfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/artifacts/artifact-rootfs.sh b/lib/functions/artifacts/artifact-rootfs.sh index bf5bbc0b9..e686e6137 100644 --- a/lib/functions/artifacts/artifact-rootfs.sh +++ b/lib/functions/artifacts/artifact-rootfs.sh @@ -17,7 +17,7 @@ function artifact_rootfs_config_dump() { artifact_input_variables[DESKTOP_APPGROUPS_SELECTED]="${DESKTOP_APPGROUPS_SELECTED:-"no_DESKTOP_APPGROUPS_SELECTED_set"}" # Hash of the packages added/removed by extensions declare pkgs_hash="undetermined" - pkgs_hash="$(echo "${REMOVE_PACKAGES[*]} ${REMOVE_PACKAGES_REFS[*]}" | sha256sum | cut -d' ' -f1)" + pkgs_hash="$(echo "${REMOVE_PACKAGES[*]} ${EXTRA_PACKAGES_ROOTFS[*]}" | sha256sum | cut -d' ' -f1)" artifact_input_variables[EXTRA_PKG_ADD_REMOVE_HASH]="${pkgs_hash}" }