2 Commits

Author SHA1 Message Date
ngn
98bb94bec1 fix: correct install function line removal for mp-build 2024-08-21 07:19:56 +03:00
ngn
1b63c6e77a update: add libisoburn warning to matter-iso 2024-08-21 02:40:19 +03:00
2 changed files with 2 additions and 1 deletions

View File

@ -80,6 +80,7 @@ if ! type "grub-mkrescue" > /dev/null; then
set_indent
warn "If you want to create UEFI ISO files make sure you install x64 GRUB or grub-efi"
warn "If you want to create BIOS ISO files make sure you install x86 GRUB or grub-bios"
warn "After installing GRUB, don't forget to install libisoburn as well"
exit 1
fi

View File

@ -438,7 +438,7 @@ success "(3/6) Created the changes file (CHANGES)"
# create the install script
if type INSTALL &>/dev/null; then
echo "$(type INSTALL | head -n-1 | tail -n-2 | sed 's/ //')" > "${distpath}/INSTALL"
echo "$(type INSTALL | head -n-1 | sed '1,3d' | sed 's/ //')" > "${distpath}/INSTALL"
check_ret "(4/6) Failed to create the install script (INSTALL)"
fi
success "(4/6) Created the install script (INSTALL)"