mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 10:50:12 +00:00

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