From 163bfbeeffd9825af213535fd22167ec541573e6 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Wed, 8 Apr 2026 08:09:03 -0400 Subject: [PATCH] fix: remove iso_store_path usage, just for test --- steps-guix/improve/guix-build-iso.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/steps-guix/improve/guix-build-iso.sh b/steps-guix/improve/guix-build-iso.sh index 6599a0db..1cc92bf0 100644 --- a/steps-guix/improve/guix-build-iso.sh +++ b/steps-guix/improve/guix-build-iso.sh @@ -21,16 +21,16 @@ mkdir -p "${out_dir}" cp /var/guix/profiles/per-user/root/current-guix/manifest /usr/manifest -iso_store_path="$(guix system image \ +guix system image \ --system=x86_64-linux \ -t iso9660 \ -c "${JOBS}" \ -e '(@@ (gnu system install) installation-os)' \ - --no-substitutes)" + --no-substitutes -if [ ! -e "${iso_store_path}" ]; then - echo "guix system image did not return a valid path: ${iso_store_path}" >&2 - exit 1 -fi +# if [ ! -e "${iso_store_path}" ]; then +# echo "guix system image did not return a valid path: ${iso_store_path}" >&2 +# exit 1 +# fi -ln -sfn "${iso_store_path}" "${out_dir}/guix-system-install-x86_64.iso" +# ln -sfn "${iso_store_path}" "${out_dir}/guix-system-install-x86_64.iso"