make yes the default option for apply

This commit is contained in:
HikariKnight 2022-03-12 18:04:26 +01:00
parent dde49a43c8
commit 8c11b69f6d
No known key found for this signature in database
GPG key ID: E8B239063B022F5A

View file

@ -119,14 +119,14 @@ initramfs and then attempt adding new kernel arguments to your bootloader."
read -p "Do you want to proceed with the installation of the files? (no=quit) [Y/n]: " YESNO read -p "Do you want to proceed with the installation of the files? (no=quit) [Y/n]: " YESNO
case "${YESNO}" in case "${YESNO}" in
[Yy]*) [Nn]*)
exit 1
;;
*)
make_BACKUP make_BACKUP
copy_FILES copy_FILES
exec "$SCRIPTDIR/lib/set_CMDLINE.sh" exec "$SCRIPTDIR/lib/set_CMDLINE.sh"
;; ;;
*)
exit 1
;;
esac esac
} }