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

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