mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 20:18:54 +00:00

Termux doesn't have a /bin/sh. So we needto use $SHELL. Keep /bin/sh as much as possible.
12 lines
208 B
Plaintext
12 lines
208 B
Plaintext
#! @BUILD_SHEBANG@
|
|
set -e
|
|
|
|
@builddir@/grub-script-check <<EOF
|
|
echo one;
|
|
echo one; echo two
|
|
echo one; echo two;
|
|
echo one ; echo two ;
|
|
echo one ; echo two ; echo three
|
|
echo one; echo two ; echo three;
|
|
EOF
|