Try slightly different expression

This commit is contained in:
RealStickman 2021-01-04 17:13:30 +01:00
parent 31e99610df
commit 04ddc7b7d4

View File

@ -93,13 +93,13 @@ cp -r ~/config/.cache ~/
#copy stuff to /etc #copy stuff to /etc
sudo cp -r ~/config/etc / sudo cp -r ~/config/etc /
sudo rsync ~/config/etc / --exclude ~/config/etc/default/grub sudo rsync --exclude-from=~/config/etc/default/grub ~/config/etc /
read -r -p "Do you want to overwrite the grub config? [y/N] " response read -r -p "Do you want to overwrite the grub config? [y/N] " response
if [[ "$response" =~ ^([yY][eE][sS][jJ]|[yY])$ ]] if [[ "$response" =~ ^([yY][eE][sS][jJ]|[yY])$ ]]
then then
# copy config # copy config
sudo cp ~/config/etc/default/grub / sudo cp ~/config/etc/default/grub /etc/default/
# update grub # update grub
sudo grub-mkconfig -o /boot/grub/grub.cfg sudo grub-mkconfig -o /boot/grub/grub.cfg
fi fi