mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Merge remote-tracking branch 'giorgiga/patch-1' into pending-fixes
This commit is contained in:
commit
5decab7009
1 changed files with 1 additions and 1 deletions
2
quickemu
2
quickemu
|
@ -1085,7 +1085,7 @@ fi
|
||||||
# TODO: Make this run the native architecture binary
|
# TODO: Make this run the native architecture binary
|
||||||
QEMU=$(command -v qemu-system-x86_64)
|
QEMU=$(command -v qemu-system-x86_64)
|
||||||
QEMU_IMG=$(command -v qemu-img)
|
QEMU_IMG=$(command -v qemu-img)
|
||||||
if [ ! -e "${QEMU}" ] && [ ! -e "${QEMU_IMG}" ]; then
|
if [ ! -e "${QEMU}" ] || [ ! -e "${QEMU_IMG}" ]; then
|
||||||
echo "ERROR! QEMU not found. Please make install qemu-system-x86_64 and qemu-img"
|
echo "ERROR! QEMU not found. Please make install qemu-system-x86_64 and qemu-img"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue