#!/bin/bash -e

if test -e /boot/invaders ; then
  echo "Found GRUB Invaders image: /boot/invaders" >&2
  cat << EOF
menuentry "GRUB Invaders" {
	multiboot	${GRUB_DRIVE_BOOT}/invaders
}
EOF
fi
