Update install.sh

This commit is contained in:
vinceliuice 2023-07-22 00:31:33 +08:00
parent c991e3a3a7
commit 8d2f2e17b8
1 changed files with 8 additions and 8 deletions

View File

@ -137,15 +137,15 @@ install() {
# Backup grub config
if [[ -f /etc/default/grub.bak ]]; then
prompt -w "\n File '/etc/default/grub.bak' already exists. Remove it? [y/N]"
read choice
if [[ "$choice" = 'y' ]]; then
cp -a /etc/default/grub /etc/default/grub.bak
else
prompt -s "Skipping to save a backup configuration in '/etc/default/grub.bak'"
fi
prompt -w "\n File '/etc/default/grub.bak' already exists!"
# read choice
# if [[ "$choice" = 'y' ]]; then
# cp -a /etc/default/grub /etc/default/grub.bak
# else
# prompt -s "Skipping to save a backup configuration in '/etc/default/grub.bak'"
# fi
else
cp -a /etc/default/grub /etc/default/grub.bak
cp -an /etc/default/grub /etc/default/grub.bak
fi
# Fedora workaround to fix the missing unicode.pf2 file (tested on fedora 34): https://bugzilla.redhat.com/show_bug.cgi?id=1739762