Skip to content

Commit

Permalink
Merge pull request #17 from adamperkowski/terminal_output_exception
Browse files Browse the repository at this point in the history
fix(install.sh): check for `GRUB_TERMINAL_OUTPUT`
  • Loading branch information
ChrisTitusTech authored Oct 24, 2024
2 parents 61c4f0e + 6017ddb commit 95fd1ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ function config_grub() {
echo_info "sed -i '/GRUB_TIMEOUT_STYLE=/d' /etc/default/grub"
sed -i '/GRUB_TIMEOUT_STYLE=/d' /etc/default/grub

# issue #16
echo_info "sed -i '/GRUB_TERMINAL_OUTPUT=/d' /etc/default/grub"
sed -i '/GRUB_TERMINAL_OUTPUT=/d' /etc/default/grub

echo_info "echo 'GRUB_TIMEOUT_STYLE=\"menu\"' >> /etc/default/grub"
echo 'GRUB_TIMEOUT_STYLE="menu"' >> /etc/default/grub

Expand Down

0 comments on commit 95fd1ac

Please sign in to comment.