Merge "Fix issue with Ubuntu grub pre-install step for ARM"

This commit is contained in:
Jenkins 2013-11-20 09:24:45 +00:00 committed by Gerrit Code Review
commit 1373ed5374

View File

@ -5,4 +5,10 @@
set -e
apt-get -y remove grub-pc grub2-common
if dpkg-query -W grub-pc; then
apt-get -y remove grub-pc
fi
if dpkg-query -W grub2-common; then
apt-get -y remove grub2-common
fi