Updated package names for qemu.

This commit is contained in:
stormdragon2976 2023-01-01 14:55:07 -05:00
parent 354c79cc5b
commit e721b7ef60

View File

@ -113,11 +113,11 @@ fi
# make sure the needed tools are installed
if [[ "$(uname -m)" == "x86_64" ]]; then
if ! pacman -Q qemu-user-static &> /dev/null ; then
echo "Please install qemu-user-static and binfmt-qemu-static before continuing."
echo "Please install qemu-user-static and qemu-user-static-binfmt before continuing."
exit 1
fi
if ! pacman -Q binfmt-qemu-static &> /dev/null ; then
echo "Please install qemu-user-static and binfmt-qemu-static before continuing."
if ! pacman -Q qemu-user-static-binfmt &> /dev/null ; then
echo "Please install qemu-user-static and qemu-user-static-binfmt before continuing."
exit 1
fi
fi