From 3bcf36f62526acd90f5521bbc7696db5c38f5c33 Mon Sep 17 00:00:00 2001 From: Giorgio Gallo Date: Mon, 3 Jan 2022 22:34:39 +0100 Subject: [PATCH 1/3] Check for both qemu-system-x86_64 and qemu-img --- quickemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 5507580..73a9b0e 100755 --- a/quickemu +++ b/quickemu @@ -1085,7 +1085,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 From 18278288d7d4f8c29851125b86d164285f0c5eb5 Mon Sep 17 00:00:00 2001 From: Ian2020 Date: Thu, 6 Jan 2022 11:09:25 +0000 Subject: [PATCH 2/3] Fix #306 - supply dir to web_get when using wget --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 235fd9a..cba6e35 100755 --- a/quickget +++ b/quickget @@ -490,7 +490,7 @@ function zsync_get() { fi else echo "INFO: zsync not found, falling back to wget" - web_get "${ISO}" + web_get "${ISO}" "${DIR}" fi } From 1e98fa7a9220c18408b220300d9599a620253a23 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Sat, 29 Jan 2022 15:10:57 +0000 Subject: [PATCH 3/3] Fixes #330 (#12) erroneous and confusing release outputs fixed --- quickget | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/quickget b/quickget index cba6e35..c5242f5 100755 --- a/quickget +++ b/quickget @@ -220,14 +220,14 @@ function releases_archlinux() { # later refactor these DE variants like languages and avoid the arch ? # all these are available with a "nonfree" option too function releases_debian() { - echo 11.1.0-amd64-cinnamon \ - 11.1.0-amd64-gnome \ - 11.1.0-amd64-kde \ - 11.1.0-amd64-lxde \ - 11.1.0-amd64-lxqt \ - 11.1.0-amd64-mate \ - 11.1.0-amd64-standard \ - 11.1.0-amd64-xfce + echo cinnamon \ + gnome \ + kde \ + lxde \ + lxqt \ + mate \ + standard \ + xfce } function releases_elementary() {