From 8c11b69f6da1abcee2ebc3a910f9871d78d31690 Mon Sep 17 00:00:00 2001 From: HikariKnight <2557889+HikariKnight@users.noreply.github.com> Date: Sat, 12 Mar 2022 18:04:26 +0100 Subject: [PATCH] make yes the default option for apply --- lib/apply_CHANGES.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/apply_CHANGES.sh b/lib/apply_CHANGES.sh index bf2bf26..b551015 100755 --- a/lib/apply_CHANGES.sh +++ b/lib/apply_CHANGES.sh @@ -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 case "${YESNO}" in - [Yy]*) + [Nn]*) + exit 1 + ;; + *) make_BACKUP copy_FILES exec "$SCRIPTDIR/lib/set_CMDLINE.sh" ;; - *) - exit 1 - ;; esac }