diff --git a/quickemu b/quickemu index d117ae0..f77c55d 100755 --- a/quickemu +++ b/quickemu @@ -1136,7 +1136,7 @@ fi # TODO: Make this run the native architecture binary QEMU=$(command -v qemu-system-x86_64) 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" exit 1 fi diff --git a/quickget b/quickget index 5c639fd..eab8a16 100755 --- a/quickget +++ b/quickget @@ -286,6 +286,7 @@ function releases_debian() { standard \ xfce } + function releases_cachyos() { echo 2022.01.09 } @@ -589,7 +590,7 @@ function zsync_get() { fi else echo "INFO: zsync not found, falling back to wget" - web_get "${ISO}" + web_get "${ISO}" "${DIR}" fi }