mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 01:58:00 +00:00

Termux doesn't have a /bin/sh. So we needto use $SHELL. Keep /bin/sh as much as possible.
11 lines
171 B
Plaintext
11 lines
171 B
Plaintext
#!@BUILD_SHEBANG@
|
|
|
|
set -e
|
|
|
|
if ! which genromfs >/dev/null 2>&1; then
|
|
echo "genromfs not installed; cannot test romfs."
|
|
exit 77
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" romfs
|