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"