fix: remove iso_store_path usage, just for test

This commit is contained in:
vxtls 2026-04-08 08:09:03 -04:00
parent 2214fcee82
commit 163bfbeeff

View file

@ -21,16 +21,16 @@ mkdir -p "${out_dir}"
cp /var/guix/profiles/per-user/root/current-guix/manifest /usr/manifest 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 \ --system=x86_64-linux \
-t iso9660 \ -t iso9660 \
-c "${JOBS}" \ -c "${JOBS}" \
-e '(@@ (gnu system install) installation-os)' \ -e '(@@ (gnu system install) installation-os)' \
--no-substitutes)" --no-substitutes
if [ ! -e "${iso_store_path}" ]; then # if [ ! -e "${iso_store_path}" ]; then
echo "guix system image did not return a valid path: ${iso_store_path}" >&2 # echo "guix system image did not return a valid path: ${iso_store_path}" >&2
exit 1 # exit 1
fi # 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"