You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(builder): custom build copied the ISO store-dir, not the ISO file
The install-iso store path is named ...-nixos-*.iso but is a DIRECTORY
(iso/<file> inside), so 'find -name *.iso | head' matched the dir → cp failed
('omitting directory'). Validation run got all the way through squashfs+ISO,
then died here. Match files only with -type f -print -quit (also removes the
pipefail/SIGPIPE risk of | head); same fix for the netboot kernel/initrd/ipxe
finds.
0 commit comments